Merge pull request #3579 from BookStackApp/dompdf_and_php_deps
Updated DOMPDF, and other PHP dependancies
This commit is contained in:
		
						commit
						d9e9c1735a
					
				| 
						 | 
				
			
			@ -197,8 +197,6 @@ return [
 | 
			
		|||
 | 
			
		||||
        // Third Party
 | 
			
		||||
        'ImageTool' => Intervention\Image\Facades\Image::class,
 | 
			
		||||
        'DomPDF'    => Barryvdh\DomPDF\Facade::class,
 | 
			
		||||
        'SnappyPDF' => Barryvdh\Snappy\Facades\SnappyPdf::class,
 | 
			
		||||
 | 
			
		||||
        // Custom BookStack
 | 
			
		||||
        'Activity'    => BookStack\Facades\Activity::class,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -15,8 +15,8 @@ $dompdfPaperSizeMap = [
 | 
			
		|||
return [
 | 
			
		||||
 | 
			
		||||
    'show_warnings' => false,   // Throw an Exception on warnings from dompdf
 | 
			
		||||
    'orientation'   => 'portrait',
 | 
			
		||||
    'defines'       => [
 | 
			
		||||
 | 
			
		||||
    'options'       => [
 | 
			
		||||
        /**
 | 
			
		||||
         * The location of the DOMPDF font directory.
 | 
			
		||||
         *
 | 
			
		||||
| 
						 | 
				
			
			@ -77,15 +77,25 @@ return [
 | 
			
		|||
        'chroot' => realpath(public_path()),
 | 
			
		||||
 | 
			
		||||
        /**
 | 
			
		||||
         * Whether to use Unicode fonts or not.
 | 
			
		||||
         * Protocol whitelist
 | 
			
		||||
         *
 | 
			
		||||
         * When set to true the PDF backend must be set to "CPDF" and fonts must be
 | 
			
		||||
         * loaded via load_font.php.
 | 
			
		||||
         * Protocols and PHP wrappers allowed in URIs, and the validation rules
 | 
			
		||||
         * that determine if a resouce may be loaded. Full support is not guaranteed
 | 
			
		||||
         * for the protocols/wrappers specified
 | 
			
		||||
         * by this array.
 | 
			
		||||
         *
 | 
			
		||||
         * When enabled, dompdf can support all Unicode glyphs. Any glyphs used in a
 | 
			
		||||
         * document must be present in your fonts, however.
 | 
			
		||||
         * @var array
 | 
			
		||||
         */
 | 
			
		||||
        'unicode_enabled' => true,
 | 
			
		||||
        'allowed_protocols' => [
 | 
			
		||||
            "file://" => ["rules" => []],
 | 
			
		||||
            "http://" => ["rules" => []],
 | 
			
		||||
            "https://" => ["rules" => []]
 | 
			
		||||
        ],
 | 
			
		||||
 | 
			
		||||
        /**
 | 
			
		||||
         * @var string
 | 
			
		||||
         */
 | 
			
		||||
        'log_output_file' => null,
 | 
			
		||||
 | 
			
		||||
        /**
 | 
			
		||||
         * Whether to enable font subsetting or not.
 | 
			
		||||
| 
						 | 
				
			
			@ -156,6 +166,15 @@ return [
 | 
			
		|||
         */
 | 
			
		||||
        'default_paper_size' => $dompdfPaperSizeMap[env('EXPORT_PAGE_SIZE', 'a4')] ?? 'a4',
 | 
			
		||||
 | 
			
		||||
        /**
 | 
			
		||||
         * The default paper orientation.
 | 
			
		||||
         *
 | 
			
		||||
         * The orientation of the page (portrait or landscape).
 | 
			
		||||
         *
 | 
			
		||||
         * @var string
 | 
			
		||||
         */
 | 
			
		||||
        'default_paper_orientation' => "portrait",
 | 
			
		||||
 | 
			
		||||
        /**
 | 
			
		||||
         * The default font family.
 | 
			
		||||
         *
 | 
			
		||||
| 
						 | 
				
			
			@ -258,10 +277,12 @@ return [
 | 
			
		|||
        'enable_css_float' => true,
 | 
			
		||||
 | 
			
		||||
        /**
 | 
			
		||||
         * Use the more-than-experimental HTML5 Lib parser.
 | 
			
		||||
         * Use the HTML5 Lib parser
 | 
			
		||||
         *
 | 
			
		||||
         * @deprecated This feature is now always on in dompdf 2.x
 | 
			
		||||
         * @var bool
 | 
			
		||||
         */
 | 
			
		||||
        'enable_html5parser' => true,
 | 
			
		||||
 | 
			
		||||
        "enable_html5_parser" => true,
 | 
			
		||||
    ],
 | 
			
		||||
 | 
			
		||||
];
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,7 +2,7 @@
 | 
			
		|||
 | 
			
		||||
namespace BookStack\Entities\Tools;
 | 
			
		||||
 | 
			
		||||
use Barryvdh\DomPDF\Facade as DomPDF;
 | 
			
		||||
use Barryvdh\DomPDF\Facade\Pdf as DomPDF;
 | 
			
		||||
use Barryvdh\Snappy\Facades\SnappyPdf;
 | 
			
		||||
 | 
			
		||||
class PdfGenerator
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -17,7 +17,7 @@
 | 
			
		|||
        "ext-mbstring": "*",
 | 
			
		||||
        "ext-xml": "*",
 | 
			
		||||
        "bacon/bacon-qr-code": "^2.0",
 | 
			
		||||
        "barryvdh/laravel-dompdf": "^1.0",
 | 
			
		||||
        "barryvdh/laravel-dompdf": "^2.0",
 | 
			
		||||
        "barryvdh/laravel-snappy": "^1.0",
 | 
			
		||||
        "doctrine/dbal": "^3.1",
 | 
			
		||||
        "filp/whoops": "^2.14",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -4,7 +4,7 @@
 | 
			
		|||
        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
 | 
			
		||||
        "This file is @generated automatically"
 | 
			
		||||
    ],
 | 
			
		||||
    "content-hash": "02b8da6ea67b03c2b5c62da865e36b02",
 | 
			
		||||
    "content-hash": "23657e068ced89802ea578718478da3a",
 | 
			
		||||
    "packages": [
 | 
			
		||||
        {
 | 
			
		||||
            "name": "aws/aws-crt-php",
 | 
			
		||||
| 
						 | 
				
			
			@ -58,16 +58,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "aws/aws-sdk-php",
 | 
			
		||||
            "version": "3.228.0",
 | 
			
		||||
            "version": "3.231.7",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/aws/aws-sdk-php.git",
 | 
			
		||||
                "reference": "4ff51d01da43aa3bd36eef921a9cd4e0ff843fab"
 | 
			
		||||
                "reference": "25f7cf72a1d7cf3075436cfbfdc4caed201df3ec"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/4ff51d01da43aa3bd36eef921a9cd4e0ff843fab",
 | 
			
		||||
                "reference": "4ff51d01da43aa3bd36eef921a9cd4e0ff843fab",
 | 
			
		||||
                "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/25f7cf72a1d7cf3075436cfbfdc4caed201df3ec",
 | 
			
		||||
                "reference": "25f7cf72a1d7cf3075436cfbfdc4caed201df3ec",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -75,7 +75,7 @@
 | 
			
		|||
                "ext-json": "*",
 | 
			
		||||
                "ext-pcre": "*",
 | 
			
		||||
                "ext-simplexml": "*",
 | 
			
		||||
                "guzzlehttp/guzzle": "^6.5.7 || ^7.4.4",
 | 
			
		||||
                "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
 | 
			
		||||
                "guzzlehttp/promises": "^1.4.0",
 | 
			
		||||
                "guzzlehttp/psr7": "^1.8.5 || ^2.3",
 | 
			
		||||
                "mtdowling/jmespath.php": "^2.6",
 | 
			
		||||
| 
						 | 
				
			
			@ -85,6 +85,7 @@
 | 
			
		|||
                "andrewsville/php-token-reflection": "^1.4",
 | 
			
		||||
                "aws/aws-php-sns-message-validator": "~1.0",
 | 
			
		||||
                "behat/behat": "~3.0",
 | 
			
		||||
                "composer/composer": "^1.10.22",
 | 
			
		||||
                "doctrine/cache": "~1.4",
 | 
			
		||||
                "ext-dom": "*",
 | 
			
		||||
                "ext-openssl": "*",
 | 
			
		||||
| 
						 | 
				
			
			@ -143,9 +144,9 @@
 | 
			
		|||
            "support": {
 | 
			
		||||
                "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
 | 
			
		||||
                "issues": "https://github.com/aws/aws-sdk-php/issues",
 | 
			
		||||
                "source": "https://github.com/aws/aws-sdk-php/tree/3.228.0"
 | 
			
		||||
                "source": "https://github.com/aws/aws-sdk-php/tree/3.231.7"
 | 
			
		||||
            },
 | 
			
		||||
            "time": "2022-06-21T18:13:25+00:00"
 | 
			
		||||
            "time": "2022-07-15T18:16:42+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "bacon/bacon-qr-code",
 | 
			
		||||
| 
						 | 
				
			
			@ -203,20 +204,20 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "barryvdh/laravel-dompdf",
 | 
			
		||||
            "version": "v1.0.2",
 | 
			
		||||
            "version": "v2.0.0",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/barryvdh/laravel-dompdf.git",
 | 
			
		||||
                "reference": "de83130d029289e1b59f28b41c314ce1d157b4a0"
 | 
			
		||||
                "reference": "1d47648c6cef37f715ecb8bcc5f5a656ad372e27"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/de83130d029289e1b59f28b41c314ce1d157b4a0",
 | 
			
		||||
                "reference": "de83130d029289e1b59f28b41c314ce1d157b4a0",
 | 
			
		||||
                "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/1d47648c6cef37f715ecb8bcc5f5a656ad372e27",
 | 
			
		||||
                "reference": "1d47648c6cef37f715ecb8bcc5f5a656ad372e27",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
                "dompdf/dompdf": "^1.2.1",
 | 
			
		||||
                "dompdf/dompdf": "^2",
 | 
			
		||||
                "illuminate/support": "^6|^7|^8|^9",
 | 
			
		||||
                "php": "^7.2 || ^8.0"
 | 
			
		||||
            },
 | 
			
		||||
| 
						 | 
				
			
			@ -229,13 +230,14 @@
 | 
			
		|||
            "type": "library",
 | 
			
		||||
            "extra": {
 | 
			
		||||
                "branch-alias": {
 | 
			
		||||
                    "dev-master": "1.0-dev"
 | 
			
		||||
                    "dev-master": "2.0-dev"
 | 
			
		||||
                },
 | 
			
		||||
                "laravel": {
 | 
			
		||||
                    "providers": [
 | 
			
		||||
                        "Barryvdh\\DomPDF\\ServiceProvider"
 | 
			
		||||
                    ],
 | 
			
		||||
                    "aliases": {
 | 
			
		||||
                        "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf",
 | 
			
		||||
                        "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf"
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
| 
						 | 
				
			
			@ -263,7 +265,7 @@
 | 
			
		|||
            ],
 | 
			
		||||
            "support": {
 | 
			
		||||
                "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
 | 
			
		||||
                "source": "https://github.com/barryvdh/laravel-dompdf/tree/v1.0.2"
 | 
			
		||||
                "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.0.0"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -275,7 +277,7 @@
 | 
			
		|||
                    "type": "github"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-05-19T15:08:38+00:00"
 | 
			
		||||
            "time": "2022-07-06T11:12:10+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "barryvdh/laravel-snappy",
 | 
			
		||||
| 
						 | 
				
			
			@ -972,21 +974,22 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "dompdf/dompdf",
 | 
			
		||||
            "version": "v1.2.2",
 | 
			
		||||
            "version": "v2.0.0",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/dompdf/dompdf.git",
 | 
			
		||||
                "reference": "5031045d9640b38cfc14aac9667470df09c9e090"
 | 
			
		||||
                "reference": "79573d8b8a141ec8a17312515de8740eed014fa9"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/dompdf/dompdf/zipball/5031045d9640b38cfc14aac9667470df09c9e090",
 | 
			
		||||
                "reference": "5031045d9640b38cfc14aac9667470df09c9e090",
 | 
			
		||||
                "url": "https://api.github.com/repos/dompdf/dompdf/zipball/79573d8b8a141ec8a17312515de8740eed014fa9",
 | 
			
		||||
                "reference": "79573d8b8a141ec8a17312515de8740eed014fa9",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
                "ext-dom": "*",
 | 
			
		||||
                "ext-mbstring": "*",
 | 
			
		||||
                "masterminds/html5": "^2.0",
 | 
			
		||||
                "phenx/php-font-lib": "^0.5.4",
 | 
			
		||||
                "phenx/php-svg-lib": "^0.3.3 || ^0.4.0",
 | 
			
		||||
                "php": "^7.1 || ^8.0"
 | 
			
		||||
| 
						 | 
				
			
			@ -1035,9 +1038,9 @@
 | 
			
		|||
            "homepage": "https://github.com/dompdf/dompdf",
 | 
			
		||||
            "support": {
 | 
			
		||||
                "issues": "https://github.com/dompdf/dompdf/issues",
 | 
			
		||||
                "source": "https://github.com/dompdf/dompdf/tree/v1.2.2"
 | 
			
		||||
                "source": "https://github.com/dompdf/dompdf/tree/v2.0.0"
 | 
			
		||||
            },
 | 
			
		||||
            "time": "2022-04-27T13:50:54+00:00"
 | 
			
		||||
            "time": "2022-06-21T21:14:57+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "dragonmantank/cron-expression",
 | 
			
		||||
| 
						 | 
				
			
			@ -1784,16 +1787,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "laravel/framework",
 | 
			
		||||
            "version": "v8.83.17",
 | 
			
		||||
            "version": "v8.83.19",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/laravel/framework.git",
 | 
			
		||||
                "reference": "2cf142cd5100b02da248acad3988bdaba5635e16"
 | 
			
		||||
                "reference": "4264f2ee12330bdb1be050998f58ba7271236395"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/laravel/framework/zipball/2cf142cd5100b02da248acad3988bdaba5635e16",
 | 
			
		||||
                "reference": "2cf142cd5100b02da248acad3988bdaba5635e16",
 | 
			
		||||
                "url": "https://api.github.com/repos/laravel/framework/zipball/4264f2ee12330bdb1be050998f58ba7271236395",
 | 
			
		||||
                "reference": "4264f2ee12330bdb1be050998f58ba7271236395",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -1953,7 +1956,7 @@
 | 
			
		|||
                "issues": "https://github.com/laravel/framework/issues",
 | 
			
		||||
                "source": "https://github.com/laravel/framework"
 | 
			
		||||
            },
 | 
			
		||||
            "time": "2022-06-21T14:38:31+00:00"
 | 
			
		||||
            "time": "2022-07-13T13:23:09+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "laravel/serializable-closure",
 | 
			
		||||
| 
						 | 
				
			
			@ -2401,16 +2404,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "league/flysystem-aws-s3-v3",
 | 
			
		||||
            "version": "1.0.29",
 | 
			
		||||
            "version": "1.0.30",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
 | 
			
		||||
                "reference": "4e25cc0582a36a786c31115e419c6e40498f6972"
 | 
			
		||||
                "reference": "af286f291ebab6877bac0c359c6c2cb017eb061d"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/4e25cc0582a36a786c31115e419c6e40498f6972",
 | 
			
		||||
                "reference": "4e25cc0582a36a786c31115e419c6e40498f6972",
 | 
			
		||||
                "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/af286f291ebab6877bac0c359c6c2cb017eb061d",
 | 
			
		||||
                "reference": "af286f291ebab6877bac0c359c6c2cb017eb061d",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -2446,9 +2449,23 @@
 | 
			
		|||
            "description": "Flysystem adapter for the AWS S3 SDK v3.x",
 | 
			
		||||
            "support": {
 | 
			
		||||
                "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
 | 
			
		||||
                "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/1.0.29"
 | 
			
		||||
                "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/1.0.30"
 | 
			
		||||
            },
 | 
			
		||||
            "time": "2020-10-08T18:58:37+00:00"
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
                    "url": "https://offset.earth/frankdejonge",
 | 
			
		||||
                    "type": "custom"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "url": "https://github.com/frankdejonge",
 | 
			
		||||
                    "type": "github"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
 | 
			
		||||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-07-02T13:51:38+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "league/html-to-markdown",
 | 
			
		||||
| 
						 | 
				
			
			@ -2741,6 +2758,75 @@
 | 
			
		|||
            },
 | 
			
		||||
            "time": "2021-12-22T16:42:49+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "masterminds/html5",
 | 
			
		||||
            "version": "2.7.5",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/Masterminds/html5-php.git",
 | 
			
		||||
                "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f640ac1bdddff06ea333a920c95bbad8872429ab",
 | 
			
		||||
                "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
                "ext-ctype": "*",
 | 
			
		||||
                "ext-dom": "*",
 | 
			
		||||
                "ext-libxml": "*",
 | 
			
		||||
                "php": ">=5.3.0"
 | 
			
		||||
            },
 | 
			
		||||
            "require-dev": {
 | 
			
		||||
                "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
 | 
			
		||||
            },
 | 
			
		||||
            "type": "library",
 | 
			
		||||
            "extra": {
 | 
			
		||||
                "branch-alias": {
 | 
			
		||||
                    "dev-master": "2.7-dev"
 | 
			
		||||
                }
 | 
			
		||||
            },
 | 
			
		||||
            "autoload": {
 | 
			
		||||
                "psr-4": {
 | 
			
		||||
                    "Masterminds\\": "src"
 | 
			
		||||
                }
 | 
			
		||||
            },
 | 
			
		||||
            "notification-url": "https://packagist.org/downloads/",
 | 
			
		||||
            "license": [
 | 
			
		||||
                "MIT"
 | 
			
		||||
            ],
 | 
			
		||||
            "authors": [
 | 
			
		||||
                {
 | 
			
		||||
                    "name": "Matt Butcher",
 | 
			
		||||
                    "email": "technosophos@gmail.com"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "name": "Matt Farina",
 | 
			
		||||
                    "email": "matt@mattfarina.com"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "name": "Asmir Mustafic",
 | 
			
		||||
                    "email": "goetas@gmail.com"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "description": "An HTML5 parser and serializer.",
 | 
			
		||||
            "homepage": "http://masterminds.github.io/html5-php",
 | 
			
		||||
            "keywords": [
 | 
			
		||||
                "HTML5",
 | 
			
		||||
                "dom",
 | 
			
		||||
                "html",
 | 
			
		||||
                "parser",
 | 
			
		||||
                "querypath",
 | 
			
		||||
                "serializer",
 | 
			
		||||
                "xml"
 | 
			
		||||
            ],
 | 
			
		||||
            "support": {
 | 
			
		||||
                "issues": "https://github.com/Masterminds/html5-php/issues",
 | 
			
		||||
                "source": "https://github.com/Masterminds/html5-php/tree/2.7.5"
 | 
			
		||||
            },
 | 
			
		||||
            "time": "2021-07-01T14:25:37+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "monolog/monolog",
 | 
			
		||||
            "version": "2.7.0",
 | 
			
		||||
| 
						 | 
				
			
			@ -2908,16 +2994,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "nesbot/carbon",
 | 
			
		||||
            "version": "2.58.0",
 | 
			
		||||
            "version": "2.59.1",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/briannesbitt/Carbon.git",
 | 
			
		||||
                "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055"
 | 
			
		||||
                "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/97a34af22bde8d0ac20ab34b29d7bfe360902055",
 | 
			
		||||
                "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055",
 | 
			
		||||
                "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
 | 
			
		||||
                "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -2932,11 +3018,12 @@
 | 
			
		|||
                "doctrine/orm": "^2.7",
 | 
			
		||||
                "friendsofphp/php-cs-fixer": "^3.0",
 | 
			
		||||
                "kylekatarnls/multi-tester": "^2.0",
 | 
			
		||||
                "ondrejmirtes/better-reflection": "*",
 | 
			
		||||
                "phpmd/phpmd": "^2.9",
 | 
			
		||||
                "phpstan/extension-installer": "^1.0",
 | 
			
		||||
                "phpstan/phpstan": "^0.12.54 || ^1.0",
 | 
			
		||||
                "phpunit/php-file-iterator": "^2.0.5",
 | 
			
		||||
                "phpunit/phpunit": "^7.5.20 || ^8.5.23",
 | 
			
		||||
                "phpstan/phpstan": "^0.12.99 || ^1.7.14",
 | 
			
		||||
                "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
 | 
			
		||||
                "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
 | 
			
		||||
                "squizlabs/php_codesniffer": "^3.4"
 | 
			
		||||
            },
 | 
			
		||||
            "bin": [
 | 
			
		||||
| 
						 | 
				
			
			@ -2993,15 +3080,19 @@
 | 
			
		|||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
                    "url": "https://opencollective.com/Carbon",
 | 
			
		||||
                    "type": "open_collective"
 | 
			
		||||
                    "url": "https://github.com/sponsors/kylekatarnls",
 | 
			
		||||
                    "type": "github"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
 | 
			
		||||
                    "url": "https://opencollective.com/Carbon#sponsor",
 | 
			
		||||
                    "type": "opencollective"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
 | 
			
		||||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-04-25T19:31:17+00:00"
 | 
			
		||||
            "time": "2022-06-29T21:43:55+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "nikic/php-parser",
 | 
			
		||||
| 
						 | 
				
			
			@ -3061,16 +3152,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "onelogin/php-saml",
 | 
			
		||||
            "version": "4.0.1",
 | 
			
		||||
            "version": "4.1.0",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/onelogin/php-saml.git",
 | 
			
		||||
                "reference": "247a45c079e65a78185d5489bdda0f95826c014d"
 | 
			
		||||
                "reference": "b22a57ebd13e838b90df5d3346090bc37056409d"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/onelogin/php-saml/zipball/247a45c079e65a78185d5489bdda0f95826c014d",
 | 
			
		||||
                "reference": "247a45c079e65a78185d5489bdda0f95826c014d",
 | 
			
		||||
                "url": "https://api.github.com/repos/onelogin/php-saml/zipball/b22a57ebd13e838b90df5d3346090bc37056409d",
 | 
			
		||||
                "reference": "b22a57ebd13e838b90df5d3346090bc37056409d",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -3113,7 +3204,7 @@
 | 
			
		|||
                "issues": "https://github.com/onelogin/php-saml/issues",
 | 
			
		||||
                "source": "https://github.com/onelogin/php-saml/"
 | 
			
		||||
            },
 | 
			
		||||
            "time": "2022-06-15T16:07:51+00:00"
 | 
			
		||||
            "time": "2022-07-15T20:44:36+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "opis/closure",
 | 
			
		||||
| 
						 | 
				
			
			@ -4095,16 +4186,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "psy/psysh",
 | 
			
		||||
            "version": "v0.11.5",
 | 
			
		||||
            "version": "v0.11.7",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/bobthecow/psysh.git",
 | 
			
		||||
                "reference": "c23686f9c48ca202710dbb967df8385a952a2daf"
 | 
			
		||||
                "reference": "77fc7270031fbc28f9a7bea31385da5c4855cb7a"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/bobthecow/psysh/zipball/c23686f9c48ca202710dbb967df8385a952a2daf",
 | 
			
		||||
                "reference": "c23686f9c48ca202710dbb967df8385a952a2daf",
 | 
			
		||||
                "url": "https://api.github.com/repos/bobthecow/psysh/zipball/77fc7270031fbc28f9a7bea31385da5c4855cb7a",
 | 
			
		||||
                "reference": "77fc7270031fbc28f9a7bea31385da5c4855cb7a",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -4165,9 +4256,9 @@
 | 
			
		|||
            ],
 | 
			
		||||
            "support": {
 | 
			
		||||
                "issues": "https://github.com/bobthecow/psysh/issues",
 | 
			
		||||
                "source": "https://github.com/bobthecow/psysh/tree/v0.11.5"
 | 
			
		||||
                "source": "https://github.com/bobthecow/psysh/tree/v0.11.7"
 | 
			
		||||
            },
 | 
			
		||||
            "time": "2022-05-27T18:03:49+00:00"
 | 
			
		||||
            "time": "2022-07-07T13:49:11+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "ralouphie/getallheaders",
 | 
			
		||||
| 
						 | 
				
			
			@ -4955,16 +5046,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/console",
 | 
			
		||||
            "version": "v5.4.9",
 | 
			
		||||
            "version": "v5.4.10",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/symfony/console.git",
 | 
			
		||||
                "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb"
 | 
			
		||||
                "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/console/zipball/829d5d1bf60b2efeb0887b7436873becc71a45eb",
 | 
			
		||||
                "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/console/zipball/4d671ab4ddac94ee439ea73649c69d9d200b5000",
 | 
			
		||||
                "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -5034,7 +5125,7 @@
 | 
			
		|||
                "terminal"
 | 
			
		||||
            ],
 | 
			
		||||
            "support": {
 | 
			
		||||
                "source": "https://github.com/symfony/console/tree/v5.4.9"
 | 
			
		||||
                "source": "https://github.com/symfony/console/tree/v5.4.10"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -5050,7 +5141,7 @@
 | 
			
		|||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-05-18T06:17:34+00:00"
 | 
			
		||||
            "time": "2022-06-26T13:00:04+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/css-selector",
 | 
			
		||||
| 
						 | 
				
			
			@ -5120,7 +5211,7 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/deprecation-contracts",
 | 
			
		||||
            "version": "v2.5.1",
 | 
			
		||||
            "version": "v2.5.2",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/symfony/deprecation-contracts.git",
 | 
			
		||||
| 
						 | 
				
			
			@ -5167,7 +5258,7 @@
 | 
			
		|||
            "description": "A generic function and convention to trigger deprecation notices",
 | 
			
		||||
            "homepage": "https://symfony.com",
 | 
			
		||||
            "support": {
 | 
			
		||||
                "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1"
 | 
			
		||||
                "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -5343,7 +5434,7 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/event-dispatcher-contracts",
 | 
			
		||||
            "version": "v2.5.1",
 | 
			
		||||
            "version": "v2.5.2",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/symfony/event-dispatcher-contracts.git",
 | 
			
		||||
| 
						 | 
				
			
			@ -5402,7 +5493,7 @@
 | 
			
		|||
                "standards"
 | 
			
		||||
            ],
 | 
			
		||||
            "support": {
 | 
			
		||||
                "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.1"
 | 
			
		||||
                "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -5485,16 +5576,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/http-foundation",
 | 
			
		||||
            "version": "v5.4.9",
 | 
			
		||||
            "version": "v5.4.10",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/symfony/http-foundation.git",
 | 
			
		||||
                "reference": "6b0d0e4aca38d57605dcd11e2416994b38774522"
 | 
			
		||||
                "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6b0d0e4aca38d57605dcd11e2416994b38774522",
 | 
			
		||||
                "reference": "6b0d0e4aca38d57605dcd11e2416994b38774522",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
 | 
			
		||||
                "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -5538,7 +5629,7 @@
 | 
			
		|||
            "description": "Defines an object-oriented layer for the HTTP specification",
 | 
			
		||||
            "homepage": "https://symfony.com",
 | 
			
		||||
            "support": {
 | 
			
		||||
                "source": "https://github.com/symfony/http-foundation/tree/v5.4.9"
 | 
			
		||||
                "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -5554,20 +5645,20 @@
 | 
			
		|||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-05-17T15:07:29+00:00"
 | 
			
		||||
            "time": "2022-06-19T13:13:40+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/http-kernel",
 | 
			
		||||
            "version": "v5.4.9",
 | 
			
		||||
            "version": "v5.4.10",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/symfony/http-kernel.git",
 | 
			
		||||
                "reference": "34b121ad3dc761f35fe1346d2f15618f8cbf77f8"
 | 
			
		||||
                "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/34b121ad3dc761f35fe1346d2f15618f8cbf77f8",
 | 
			
		||||
                "reference": "34b121ad3dc761f35fe1346d2f15618f8cbf77f8",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/255ae3b0a488d78fbb34da23d3e0c059874b5948",
 | 
			
		||||
                "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -5650,7 +5741,7 @@
 | 
			
		|||
            "description": "Provides a structured process for converting a Request into a Response",
 | 
			
		||||
            "homepage": "https://symfony.com",
 | 
			
		||||
            "support": {
 | 
			
		||||
                "source": "https://github.com/symfony/http-kernel/tree/v5.4.9"
 | 
			
		||||
                "source": "https://github.com/symfony/http-kernel/tree/v5.4.10"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -5666,20 +5757,20 @@
 | 
			
		|||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-05-27T07:09:08+00:00"
 | 
			
		||||
            "time": "2022-06-26T16:57:59+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/mime",
 | 
			
		||||
            "version": "v5.4.9",
 | 
			
		||||
            "version": "v5.4.10",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/symfony/mime.git",
 | 
			
		||||
                "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e"
 | 
			
		||||
                "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/mime/zipball/2b3802a24e48d0cfccf885173d2aac91e73df92e",
 | 
			
		||||
                "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/mime/zipball/02265e1e5111c3cd7480387af25e82378b7ab9cc",
 | 
			
		||||
                "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -5733,7 +5824,7 @@
 | 
			
		|||
                "mime-type"
 | 
			
		||||
            ],
 | 
			
		||||
            "support": {
 | 
			
		||||
                "source": "https://github.com/symfony/mime/tree/v5.4.9"
 | 
			
		||||
                "source": "https://github.com/symfony/mime/tree/v5.4.10"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -5749,7 +5840,7 @@
 | 
			
		|||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-05-21T10:24:18+00:00"
 | 
			
		||||
            "time": "2022-06-09T12:22:40+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/polyfill-ctype",
 | 
			
		||||
| 
						 | 
				
			
			@ -6722,16 +6813,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/service-contracts",
 | 
			
		||||
            "version": "v2.5.1",
 | 
			
		||||
            "version": "v2.5.2",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/symfony/service-contracts.git",
 | 
			
		||||
                "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
 | 
			
		||||
                "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
 | 
			
		||||
                "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
 | 
			
		||||
                "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -6785,7 +6876,7 @@
 | 
			
		|||
                "standards"
 | 
			
		||||
            ],
 | 
			
		||||
            "support": {
 | 
			
		||||
                "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
 | 
			
		||||
                "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -6801,20 +6892,20 @@
 | 
			
		|||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-03-13T20:07:29+00:00"
 | 
			
		||||
            "time": "2022-05-30T19:17:29+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/string",
 | 
			
		||||
            "version": "v5.4.9",
 | 
			
		||||
            "version": "v5.4.10",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/symfony/string.git",
 | 
			
		||||
                "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99"
 | 
			
		||||
                "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/string/zipball/985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
 | 
			
		||||
                "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/string/zipball/4432bc7df82a554b3e413a8570ce2fea90e94097",
 | 
			
		||||
                "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -6871,7 +6962,7 @@
 | 
			
		|||
                "utf8"
 | 
			
		||||
            ],
 | 
			
		||||
            "support": {
 | 
			
		||||
                "source": "https://github.com/symfony/string/tree/v5.4.9"
 | 
			
		||||
                "source": "https://github.com/symfony/string/tree/v5.4.10"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -6887,7 +6978,7 @@
 | 
			
		|||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-04-19T10:40:37+00:00"
 | 
			
		||||
            "time": "2022-06-26T15:57:47+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/translation",
 | 
			
		||||
| 
						 | 
				
			
			@ -6988,16 +7079,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/translation-contracts",
 | 
			
		||||
            "version": "v2.5.1",
 | 
			
		||||
            "version": "v2.5.2",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/symfony/translation-contracts.git",
 | 
			
		||||
                "reference": "1211df0afa701e45a04253110e959d4af4ef0f07"
 | 
			
		||||
                "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1211df0afa701e45a04253110e959d4af4ef0f07",
 | 
			
		||||
                "reference": "1211df0afa701e45a04253110e959d4af4ef0f07",
 | 
			
		||||
                "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
 | 
			
		||||
                "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -7046,7 +7137,7 @@
 | 
			
		|||
                "standards"
 | 
			
		||||
            ],
 | 
			
		||||
            "support": {
 | 
			
		||||
                "source": "https://github.com/symfony/translation-contracts/tree/v2.5.1"
 | 
			
		||||
                "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -7062,7 +7153,7 @@
 | 
			
		|||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-01-02T09:53:40+00:00"
 | 
			
		||||
            "time": "2022-06-27T16:58:25+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "symfony/var-dumper",
 | 
			
		||||
| 
						 | 
				
			
			@ -7498,16 +7589,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "composer/composer",
 | 
			
		||||
            "version": "2.3.7",
 | 
			
		||||
            "version": "2.3.10",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/composer/composer.git",
 | 
			
		||||
                "reference": "10cd375cf85dede2ff417ceab517ef9a0dc55407"
 | 
			
		||||
                "reference": "ebac357c0a41359f3981098729042ed6dedc97ba"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/composer/composer/zipball/10cd375cf85dede2ff417ceab517ef9a0dc55407",
 | 
			
		||||
                "reference": "10cd375cf85dede2ff417ceab517ef9a0dc55407",
 | 
			
		||||
                "url": "https://api.github.com/repos/composer/composer/zipball/ebac357c0a41359f3981098729042ed6dedc97ba",
 | 
			
		||||
                "reference": "ebac357c0a41359f3981098729042ed6dedc97ba",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -7588,7 +7679,7 @@
 | 
			
		|||
            "support": {
 | 
			
		||||
                "irc": "ircs://irc.libera.chat:6697/composer",
 | 
			
		||||
                "issues": "https://github.com/composer/composer/issues",
 | 
			
		||||
                "source": "https://github.com/composer/composer/tree/2.3.7"
 | 
			
		||||
                "source": "https://github.com/composer/composer/tree/2.3.10"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -7604,7 +7695,7 @@
 | 
			
		|||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-06-06T14:43:28+00:00"
 | 
			
		||||
            "time": "2022-07-13T13:48:23+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "composer/metadata-minifier",
 | 
			
		||||
| 
						 | 
				
			
			@ -9008,16 +9099,16 @@
 | 
			
		|||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "phpstan/phpstan",
 | 
			
		||||
            "version": "1.7.15",
 | 
			
		||||
            "version": "1.8.1",
 | 
			
		||||
            "source": {
 | 
			
		||||
                "type": "git",
 | 
			
		||||
                "url": "https://github.com/phpstan/phpstan.git",
 | 
			
		||||
                "reference": "cd0202ea1b1fc6d1bbe156c6e2e18a03e0ff160a"
 | 
			
		||||
                "reference": "8dbba631fa32f4b289404469c2afd6122fd61d67"
 | 
			
		||||
            },
 | 
			
		||||
            "dist": {
 | 
			
		||||
                "type": "zip",
 | 
			
		||||
                "url": "https://api.github.com/repos/phpstan/phpstan/zipball/cd0202ea1b1fc6d1bbe156c6e2e18a03e0ff160a",
 | 
			
		||||
                "reference": "cd0202ea1b1fc6d1bbe156c6e2e18a03e0ff160a",
 | 
			
		||||
                "url": "https://api.github.com/repos/phpstan/phpstan/zipball/8dbba631fa32f4b289404469c2afd6122fd61d67",
 | 
			
		||||
                "reference": "8dbba631fa32f4b289404469c2afd6122fd61d67",
 | 
			
		||||
                "shasum": ""
 | 
			
		||||
            },
 | 
			
		||||
            "require": {
 | 
			
		||||
| 
						 | 
				
			
			@ -9043,7 +9134,7 @@
 | 
			
		|||
            "description": "PHPStan - PHP Static Analysis Tool",
 | 
			
		||||
            "support": {
 | 
			
		||||
                "issues": "https://github.com/phpstan/phpstan/issues",
 | 
			
		||||
                "source": "https://github.com/phpstan/phpstan/tree/1.7.15"
 | 
			
		||||
                "source": "https://github.com/phpstan/phpstan/tree/1.8.1"
 | 
			
		||||
            },
 | 
			
		||||
            "funding": [
 | 
			
		||||
                {
 | 
			
		||||
| 
						 | 
				
			
			@ -9063,7 +9154,7 @@
 | 
			
		|||
                    "type": "tidelift"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "time": "2022-06-20T08:29:01+00:00"
 | 
			
		||||
            "time": "2022-07-12T16:08:06+00:00"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "phpunit/php-code-coverage",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -527,7 +527,7 @@ class PageContentTest extends TestCase
 | 
			
		|||
 | 
			
		||||
        $pageView = $this->get($page->getUrl());
 | 
			
		||||
        $pageView->assertElementExists('.page-content li.task-list-item input[type=checkbox]');
 | 
			
		||||
        $pageView->assertElementExists('.page-content li.task-list-item input[type=checkbox][checked=checked]');
 | 
			
		||||
        $pageView->assertElementExists('.page-content li.task-list-item input[type=checkbox][checked]');
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function test_page_markdown_strikethrough_rendering()
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -78,15 +78,15 @@ class ConfigTest extends TestCase
 | 
			
		|||
 | 
			
		||||
    public function test_dompdf_remote_fetching_controlled_by_allow_untrusted_server_fetching_false()
 | 
			
		||||
    {
 | 
			
		||||
        $this->checkEnvConfigResult('ALLOW_UNTRUSTED_SERVER_FETCHING', 'false', 'dompdf.defines.enable_remote', false);
 | 
			
		||||
        $this->checkEnvConfigResult('ALLOW_UNTRUSTED_SERVER_FETCHING', 'true', 'dompdf.defines.enable_remote', true);
 | 
			
		||||
        $this->checkEnvConfigResult('ALLOW_UNTRUSTED_SERVER_FETCHING', 'false', 'dompdf.options.enable_remote', false);
 | 
			
		||||
        $this->checkEnvConfigResult('ALLOW_UNTRUSTED_SERVER_FETCHING', 'true', 'dompdf.options.enable_remote', true);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function test_dompdf_paper_size_options_are_limited()
 | 
			
		||||
    {
 | 
			
		||||
        $this->checkEnvConfigResult('EXPORT_PAGE_SIZE', 'cat', 'dompdf.defines.default_paper_size', 'a4');
 | 
			
		||||
        $this->checkEnvConfigResult('EXPORT_PAGE_SIZE', 'letter', 'dompdf.defines.default_paper_size', 'letter');
 | 
			
		||||
        $this->checkEnvConfigResult('EXPORT_PAGE_SIZE', 'a4', 'dompdf.defines.default_paper_size', 'a4');
 | 
			
		||||
        $this->checkEnvConfigResult('EXPORT_PAGE_SIZE', 'cat', 'dompdf.options.default_paper_size', 'a4');
 | 
			
		||||
        $this->checkEnvConfigResult('EXPORT_PAGE_SIZE', 'letter', 'dompdf.options.default_paper_size', 'letter');
 | 
			
		||||
        $this->checkEnvConfigResult('EXPORT_PAGE_SIZE', 'a4', 'dompdf.options.default_paper_size', 'a4');
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function test_snappy_paper_size_options_are_limited()
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue