├── .gitignore ├── src ├── Exports │ └── Html_driver.php └── datadrivers │ └── DataInterface.php ├── examples ├── pinfo.php ├── main.php ├── .DS_Store ├── groups.jasper ├── barcodes.jasper ├── invoice.jasper ├── allelements.jasper ├── formating.jasper ├── images │ ├── .DS_Store │ ├── invoice.png │ ├── simit.png │ ├── barcodes.png │ ├── formating.png │ └── allelements.png ├── headersuberport.jasper ├── allelement_subreport.jasper ├── column_verticalorder.jasper ├── subreport_letterhead.jasper ├── barcodes.php ├── allelements.php └── mongo1.php ├── vendor ├── ezyang │ └── htmlpurifier │ │ ├── VERSION │ │ ├── library │ │ ├── HTMLPurifier │ │ │ ├── ConfigSchema │ │ │ │ ├── schema │ │ │ │ │ ├── info.ini │ │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ │ ├── HTML.Nofollow.txt │ │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ │ ├── HTML.Strict.txt │ │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ │ ├── HTML.TargetBlank.txt │ │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ │ ├── CSS.Trusted.txt │ │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ │ ├── HTML.SafeScripting.txt │ │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ │ │ ├── Core.Language.txt │ │ │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ │ ├── URI.Disable.txt │ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ │ ├── Core.EnableIDNA.txt │ │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ │ ├── Filter.Custom.txt │ │ │ │ │ ├── HTML.TargetNoopener.txt │ │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ │ ├── HTML.Parent.txt │ │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ │ ├── HTML.Forms.txt │ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ │ ├── Core.AllowParseManyTags.txt │ │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ │ ├── CSS.AllowedFonts.txt │ │ │ │ │ ├── HTML.AllowedComments.txt │ │ │ │ │ ├── Output.Newline.txt │ │ │ │ │ ├── Attr.ID.HTML5.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ │ ├── HTML.SafeIframe.txt │ │ │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ │ │ └── Core.CollectErrors.txt │ │ │ │ └── Exception.php │ │ │ ├── DefinitionCache │ │ │ │ └── Serializer │ │ │ │ │ └── README │ │ │ ├── Printer │ │ │ │ ├── ConfigForm.js │ │ │ │ └── ConfigForm.css │ │ │ ├── Token │ │ │ │ ├── Start.php │ │ │ │ └── Empty.php │ │ │ ├── VarParserException.php │ │ │ ├── Exception.php │ │ │ ├── HTMLModule │ │ │ │ ├── Tidy │ │ │ │ │ └── Transitional.php │ │ │ │ ├── XMLCommonAttributes.php │ │ │ │ └── NonXMLCommonAttributes.php │ │ │ ├── URIScheme │ │ │ │ └── https.php │ │ │ └── AttrDef │ │ │ │ ├── URI │ │ │ │ └── Email.php │ │ │ │ └── HTML │ │ │ │ └── ContentEditable.php │ │ ├── HTMLPurifier.composer.php │ │ ├── HTMLPurifier.path.php │ │ ├── HTMLPurifier.autoload-legacy.php │ │ └── HTMLPurifier.auto.php │ │ └── CREDITS ├── tecnickcom │ ├── tc-lib-file │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── test │ │ │ └── empty.txt │ │ ├── CODEOWNERS │ │ ├── resources │ │ │ └── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ ├── SECURITY.md │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── phpcompatinfo.json │ │ ├── .gitignore │ │ └── .editorconfig │ ├── tc-lib-pdf │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── resources │ │ │ ├── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ │ └── etc │ │ │ │ └── php-tecnickcom-tc-lib-pdf │ │ │ │ └── config.json │ │ ├── CODEOWNERS │ │ ├── src │ │ │ └── include │ │ │ │ └── sRGB.icc.z │ │ ├── SECURITY.md │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── phpcompatinfo.json │ │ ├── .gitignore │ │ └── .editorconfig │ ├── tcpdf │ │ ├── VERSION │ │ ├── fonts │ │ │ ├── aefurat.z │ │ │ ├── dejavusans.z │ │ │ ├── freemono.z │ │ │ ├── freemonob.z │ │ │ ├── freemonobi.z │ │ │ ├── freemonoi.z │ │ │ ├── freesans.z │ │ │ ├── freesansb.z │ │ │ ├── freesansbi.z │ │ │ ├── freesansi.z │ │ │ ├── freeserif.z │ │ │ ├── freeserifb.z │ │ │ ├── freeserifi.z │ │ │ ├── pdfasymbol.z │ │ │ ├── pdfatimes.z │ │ │ ├── pdfatimesb.z │ │ │ ├── pdfatimesi.z │ │ │ ├── aealarabiya.z │ │ │ ├── aefurat.ctg.z │ │ │ ├── dejavusansb.z │ │ │ ├── dejavusansbi.z │ │ │ ├── dejavusansi.z │ │ │ ├── dejavuserif.z │ │ │ ├── dejavuserifb.z │ │ │ ├── dejavuserifi.z │ │ │ ├── freemono.ctg.z │ │ │ ├── freesans.ctg.z │ │ │ ├── freeserifbi.z │ │ │ ├── pdfacourier.z │ │ │ ├── pdfacourierb.z │ │ │ ├── pdfacourieri.z │ │ │ ├── pdfatimesbi.z │ │ │ ├── aealarabiya.ctg.z │ │ │ ├── dejavusans.ctg.z │ │ │ ├── dejavusansb.ctg.z │ │ │ ├── dejavusansi.ctg.z │ │ │ ├── dejavusansmono.z │ │ │ ├── dejavusansmonob.z │ │ │ ├── dejavusansmonoi.z │ │ │ ├── dejavuserif.ctg.z │ │ │ ├── dejavuserifbi.z │ │ │ ├── freemonob.ctg.z │ │ │ ├── freemonobi.ctg.z │ │ │ ├── freemonoi.ctg.z │ │ │ ├── freesansb.ctg.z │ │ │ ├── freesansbi.ctg.z │ │ │ ├── freesansi.ctg.z │ │ │ ├── freeserif.ctg.z │ │ │ ├── freeserifb.ctg.z │ │ │ ├── freeserifbi.ctg.z │ │ │ ├── freeserifi.ctg.z │ │ │ ├── pdfacourierbi.z │ │ │ ├── pdfahelvetica.z │ │ │ ├── pdfahelveticab.z │ │ │ ├── pdfahelveticabi.z │ │ │ ├── pdfahelveticai.z │ │ │ ├── dejavusansbi.ctg.z │ │ │ ├── dejavusansmonobi.z │ │ │ ├── dejavuserifb.ctg.z │ │ │ ├── dejavuserifbi.ctg.z │ │ │ ├── dejavuserifi.ctg.z │ │ │ ├── pdfazapfdingbats.z │ │ │ ├── dejavu-fonts-ttf-2.33 │ │ │ │ └── BUGS │ │ │ ├── dejavu-fonts-ttf-2.34 │ │ │ │ └── BUGS │ │ │ ├── dejavusanscondensed.z │ │ │ ├── dejavusanscondensedb.z │ │ │ ├── dejavusanscondensedi.z │ │ │ ├── dejavusansextralight.z │ │ │ ├── dejavusansmono.ctg.z │ │ │ ├── dejavusansmonob.ctg.z │ │ │ ├── dejavusansmonobi.ctg.z │ │ │ ├── dejavusansmonoi.ctg.z │ │ │ ├── dejavuserifcondensed.z │ │ │ ├── dejavusanscondensedbi.z │ │ │ ├── dejavuserifcondensedb.z │ │ │ ├── dejavuserifcondensedbi.z │ │ │ ├── dejavuserifcondensedi.z │ │ │ ├── dejavusanscondensed.ctg.z │ │ │ ├── dejavusanscondensedb.ctg.z │ │ │ ├── dejavusanscondensedbi.ctg.z │ │ │ ├── dejavusanscondensedi.ctg.z │ │ │ ├── dejavusansextralight.ctg.z │ │ │ ├── dejavuserifcondensed.ctg.z │ │ │ ├── dejavuserifcondensedb.ctg.z │ │ │ ├── dejavuserifcondensedi.ctg.z │ │ │ └── dejavuserifcondensedbi.ctg.z │ │ ├── include │ │ │ └── sRGB.icc │ │ ├── examples │ │ │ ├── images │ │ │ │ ├── img.png │ │ │ │ ├── alpha.png │ │ │ │ ├── _blank.png │ │ │ │ ├── image_demo.jpg │ │ │ │ ├── tcpdf_cell.png │ │ │ │ ├── tcpdf_logo.jpg │ │ │ │ ├── logo_example.gif │ │ │ │ ├── logo_example.jpg │ │ │ │ ├── logo_example.png │ │ │ │ ├── tcpdf_signature.png │ │ │ │ └── image_with_alpha.png │ │ │ ├── example_012.pdf │ │ │ └── data │ │ │ │ ├── cert │ │ │ │ ├── tcpdf.fdf │ │ │ │ └── tcpdf.p12 │ │ │ │ └── table_data_demo.txt │ │ └── tools │ │ │ └── .htaccess │ ├── tc-lib-barcode │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── resources │ │ │ └── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ ├── CODEOWNERS │ │ ├── SECURITY.md │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── phpcompatinfo.json │ │ ├── .gitignore │ │ └── .editorconfig │ ├── tc-lib-color │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── CODEOWNERS │ │ ├── resources │ │ │ └── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ ├── SECURITY.md │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── phpcompatinfo.json │ │ ├── .gitignore │ │ └── .editorconfig │ ├── tc-lib-pdf-font │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── resources │ │ │ ├── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ │ └── fonts │ │ │ │ └── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ ├── CODEOWNERS │ │ ├── SECURITY.md │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── phpcompatinfo.json │ │ ├── .gitignore │ │ └── .editorconfig │ ├── tc-lib-pdf-graph │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── CODEOWNERS │ │ ├── resources │ │ │ └── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ ├── SECURITY.md │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── phpcompatinfo.json │ │ ├── .gitignore │ │ └── .editorconfig │ ├── tc-lib-pdf-image │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── CODEOWNERS │ │ ├── resources │ │ │ └── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ ├── test │ │ │ └── images │ │ │ │ ├── 200x100_RGB.jpg │ │ │ │ ├── 200x100_RGB.png │ │ │ │ ├── 200x100_CMYK.jpg │ │ │ │ ├── 200x100_GRAY.jpg │ │ │ │ ├── 200x100_GRAY.png │ │ │ │ ├── 200x100_INDEX16.png │ │ │ │ ├── 200x100_INDEX256.png │ │ │ │ ├── 200x100_RGBALPHA.png │ │ │ │ ├── 200x100_RGBICC.jpg │ │ │ │ ├── 200x100_RGBICC.png │ │ │ │ ├── 200x100_RGBINT.png │ │ │ │ └── 200x100_INDEXALPHA.png │ │ ├── SECURITY.md │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── phpcompatinfo.json │ │ ├── .gitignore │ │ └── .editorconfig │ ├── tc-lib-pdf-page │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── resources │ │ │ └── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ ├── CODEOWNERS │ │ ├── SECURITY.md │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── phpcompatinfo.json │ │ ├── .gitignore │ │ └── .editorconfig │ ├── tc-lib-unicode │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── resources │ │ │ └── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ ├── CODEOWNERS │ │ ├── SECURITY.md │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── phpcompatinfo.json │ │ ├── .gitignore │ │ └── .editorconfig │ ├── tc-lib-pdf-encrypt │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── resources │ │ │ └── debian │ │ │ │ ├── compat │ │ │ │ ├── source │ │ │ │ └── format │ │ │ │ ├── rules │ │ │ │ └── changelog │ │ ├── CODEOWNERS │ │ ├── SECURITY.md │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── .gitignore │ │ ├── phpcompatinfo.json │ │ └── .editorconfig │ └── tc-lib-unicode-data │ │ ├── RELEASE │ │ ├── VERSION │ │ ├── resources │ │ └── debian │ │ │ ├── compat │ │ │ ├── source │ │ │ └── format │ │ │ ├── rules │ │ │ └── changelog │ │ ├── CODEOWNERS │ │ ├── SECURITY.md │ │ ├── .github │ │ └── FUNDING.yml │ │ ├── phpstan.neon │ │ ├── phpcs.xml │ │ ├── phpcompatinfo.json │ │ ├── .gitignore │ │ └── .editorconfig ├── maennchen │ └── zipstream-php │ │ ├── .tool-versions │ │ ├── test │ │ └── bootstrap.php │ │ ├── src │ │ ├── Exception.php │ │ ├── Version.php │ │ └── Exception │ │ │ ├── StreamNotReadableException.php │ │ │ ├── OverflowException.php │ │ │ └── FileNotFoundException.php │ │ ├── .phive │ │ └── phars.xml │ │ └── .editorconfig ├── psr │ ├── container │ │ ├── .gitignore │ │ └── src │ │ │ ├── NotFoundExceptionInterface.php │ │ │ └── ContainerExceptionInterface.php │ ├── simple-cache │ │ ├── src │ │ │ ├── CacheException.php │ │ │ └── InvalidArgumentException.php │ │ └── .editorconfig │ ├── http-client │ │ └── src │ │ │ └── ClientExceptionInterface.php │ └── http-factory │ │ └── src │ │ └── UriFactoryInterface.php ├── fakerphp │ └── faker │ │ └── src │ │ └── Faker │ │ ├── Provider │ │ ├── de_AT │ │ │ ├── Text.php │ │ │ ├── Internet.php │ │ │ └── Company.php │ │ ├── fr_CH │ │ │ ├── Text.php │ │ │ ├── Color.php │ │ │ ├── Internet.php │ │ │ └── Company.php │ │ ├── it_CH │ │ │ ├── Text.php │ │ │ ├── Internet.php │ │ │ └── Company.php │ │ ├── fr_BE │ │ │ ├── Color.php │ │ │ ├── Internet.php │ │ │ ├── Company.php │ │ │ └── PhoneNumber.php │ │ ├── fr_CA │ │ │ ├── Color.php │ │ │ └── Company.php │ │ ├── en_NG │ │ │ └── Internet.php │ │ ├── th_TH │ │ │ └── Internet.php │ │ ├── at_AT │ │ │ └── Payment.php │ │ ├── mn_MN │ │ │ └── PhoneNumber.php │ │ ├── kk_KZ │ │ │ ├── Internet.php │ │ │ ├── Color.php │ │ │ └── PhoneNumber.php │ │ ├── nl_NL │ │ │ └── Internet.php │ │ ├── nl_BE │ │ │ ├── Internet.php │ │ │ ├── Company.php │ │ │ └── PhoneNumber.php │ │ ├── uk_UA │ │ │ └── Internet.php │ │ ├── he_IL │ │ │ ├── PhoneNumber.php │ │ │ └── Company.php │ │ ├── pt_PT │ │ │ ├── Internet.php │ │ │ └── Company.php │ │ ├── bn_BD │ │ │ ├── PhoneNumber.php │ │ │ └── Utils.php │ │ ├── cs_CZ │ │ │ ├── PhoneNumber.php │ │ │ └── Internet.php │ │ ├── lv_LV │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ ├── hu_HU │ │ │ ├── PhoneNumber.php │ │ │ └── Company.php │ │ ├── it_IT │ │ │ └── Internet.php │ │ ├── ka_GE │ │ │ ├── PhoneNumber.php │ │ │ └── Internet.php │ │ ├── hy_AM │ │ │ ├── Color.php │ │ │ └── Internet.php │ │ ├── ru_RU │ │ │ ├── PhoneNumber.php │ │ │ └── Internet.php │ │ ├── bg_BG │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ ├── hr_HR │ │ │ └── PhoneNumber.php │ │ ├── fi_FI │ │ │ └── Internet.php │ │ ├── me_ME │ │ │ └── PhoneNumber.php │ │ ├── pt_BR │ │ │ └── Internet.php │ │ ├── sk_SK │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ ├── sl_SI │ │ │ ├── Internet.php │ │ │ ├── Company.php │ │ │ └── PhoneNumber.php │ │ ├── vi_VN │ │ │ └── Internet.php │ │ ├── en_GB │ │ │ └── Internet.php │ │ ├── en_IN │ │ │ └── Internet.php │ │ ├── en_AU │ │ │ └── Internet.php │ │ ├── en_UG │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ ├── el_CY │ │ │ ├── Internet.php │ │ │ └── Company.php │ │ ├── pl_PL │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ ├── ar_EG │ │ │ └── Payment.php │ │ ├── de_CH │ │ │ ├── Company.php │ │ │ └── Internet.php │ │ ├── is_IS │ │ │ └── PhoneNumber.php │ │ ├── es_ES │ │ │ ├── Internet.php │ │ │ └── Color.php │ │ ├── es_PE │ │ │ └── PhoneNumber.php │ │ ├── es_VE │ │ │ └── Internet.php │ │ ├── tr_TR │ │ │ └── Internet.php │ │ ├── da_DK │ │ │ └── PhoneNumber.php │ │ ├── fr_FR │ │ │ └── Internet.php │ │ ├── ja_JP │ │ │ └── Company.php │ │ ├── lt_LT │ │ │ ├── PhoneNumber.php │ │ │ └── Company.php │ │ ├── ne_NP │ │ │ └── PhoneNumber.php │ │ ├── en_HK │ │ │ └── Internet.php │ │ ├── en_CA │ │ │ └── PhoneNumber.php │ │ └── zh_TW │ │ │ └── PhoneNumber.php │ │ ├── Container │ │ ├── ContainerInterface.php │ │ ├── ContainerException.php │ │ └── NotInContainerException.php │ │ ├── Extension │ │ ├── ExtensionNotFound.php │ │ ├── Extension.php │ │ ├── CountryExtension.php │ │ ├── UuidExtension.php │ │ ├── PhoneNumberExtension.php │ │ └── CompanyExtension.php │ │ └── ORM │ │ └── Doctrine │ │ └── backward-compatibility.php ├── phpoffice │ └── phpspreadsheet │ │ └── src │ │ └── PhpSpreadsheet │ │ ├── Exception.php │ │ ├── Calculation │ │ ├── locale │ │ │ ├── en │ │ │ │ └── uk │ │ │ │ │ └── config │ │ │ ├── Translations.xlsx │ │ │ ├── bg │ │ │ │ └── config │ │ │ ├── de │ │ │ │ └── config │ │ │ ├── fr │ │ │ │ └── config │ │ │ ├── it │ │ │ │ └── config │ │ │ ├── nb │ │ │ │ └── config │ │ │ ├── da │ │ │ │ └── config │ │ │ ├── pt │ │ │ │ ├── config │ │ │ │ └── br │ │ │ │ │ └── config │ │ │ ├── es │ │ │ │ └── config │ │ │ ├── tr │ │ │ │ └── config │ │ │ ├── nl │ │ │ │ └── config │ │ │ ├── fi │ │ │ │ └── config │ │ │ ├── hu │ │ │ │ └── config │ │ │ ├── pl │ │ │ │ └── config │ │ │ ├── ru │ │ │ │ └── config │ │ │ ├── cs │ │ │ │ └── config │ │ │ └── sv │ │ │ │ └── config │ │ ├── Engineering │ │ │ └── Constants.php │ │ ├── Internal │ │ │ └── MakeMatrix.php │ │ └── Engine │ │ │ └── Operands │ │ │ └── Operand.php │ │ ├── Style │ │ └── NumberFormat │ │ │ ├── Wizard │ │ │ └── Wizard.php │ │ │ └── BaseFormatter.php │ │ ├── Chart │ │ ├── Exception.php │ │ └── GridLines.php │ │ ├── Reader │ │ ├── Exception.php │ │ └── IReadFilter.php │ │ ├── Writer │ │ ├── Exception.php │ │ ├── Ods │ │ │ ├── Thumbnails.php │ │ │ └── Mimetype.php │ │ └── ZipStream0.php │ │ ├── IComparable.php │ │ └── Cell │ │ ├── IValueBinder.php │ │ └── AddressRange.php ├── symfony │ └── deprecation-contracts │ │ └── CHANGELOG.md ├── composer │ ├── autoload_namespaces.php │ └── autoload_files.php └── markbaker │ ├── complex │ └── classes │ │ └── src │ │ └── Exception.php │ └── matrix │ ├── classes │ └── src │ │ ├── Exception.php │ │ └── Div0Exception.php │ ├── phpstan.neon │ └── infection.json.dist └── .DS_Store /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /src/Exports/Html_driver.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/pinfo.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/tools/.htaccess: -------------------------------------------------------------------------------- 1 | # Apache 2.4 2 | 3 | Require all denied 4 | 5 | 6 | # Apache 2.2 7 | 8 | Order Deny,Allow 9 | Deny from all 10 | 11 | -------------------------------------------------------------------------------- /vendor/psr/container/src/NotFoundExceptionInterface.php: -------------------------------------------------------------------------------- 1 | ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-color/resources/debian/changelog: -------------------------------------------------------------------------------- 1 | ~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low 2 | 3 | * Please check the 4 | https://github.com/~#VENDOR#~/~#PROJECT#~ 5 | commit history 6 | 7 | -- Nicola Asuni ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-file/resources/debian/changelog: -------------------------------------------------------------------------------- 1 | ~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low 2 | 3 | * Please check the 4 | https://github.com/~#VENDOR#~/~#PROJECT#~ 5 | commit history 6 | 7 | -- Nicola Asuni ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf/resources/debian/changelog: -------------------------------------------------------------------------------- 1 | ~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low 2 | 3 | * Please check the 4 | https://github.com/~#VENDOR#~/~#PROJECT#~ 5 | commit history 6 | 7 | -- Nicola Asuni ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-unicode/resources/debian/changelog: -------------------------------------------------------------------------------- 1 | ~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low 2 | 3 | * Please check the 4 | https://github.com/~#VENDOR#~/~#PROJECT#~ 5 | commit history 6 | 7 | -- Nicola Asuni ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/Version.php: -------------------------------------------------------------------------------- 1 | ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf-font/resources/debian/changelog: -------------------------------------------------------------------------------- 1 | ~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low 2 | 3 | * Please check the 4 | https://github.com/~#VENDOR#~/~#PROJECT#~ 5 | commit history 6 | 7 | -- Nicola Asuni ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf-graph/resources/debian/changelog: -------------------------------------------------------------------------------- 1 | ~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low 2 | 3 | * Please check the 4 | https://github.com/~#VENDOR#~/~#PROJECT#~ 5 | commit history 6 | 7 | -- Nicola Asuni ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf-image/resources/debian/changelog: -------------------------------------------------------------------------------- 1 | ~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low 2 | 3 | * Please check the 4 | https://github.com/~#VENDOR#~/~#PROJECT#~ 5 | commit history 6 | 7 | -- Nicola Asuni ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf-page/resources/debian/changelog: -------------------------------------------------------------------------------- 1 | ~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low 2 | 3 | * Please check the 4 | https://github.com/~#VENDOR#~/~#PROJECT#~ 5 | commit history 6 | 7 | -- Nicola Asuni ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-unicode-data/resources/debian/changelog: -------------------------------------------------------------------------------- 1 | ~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low 2 | 3 | * Please check the 4 | https://github.com/~#VENDOR#~/~#PROJECT#~ 5 | commit history 6 | 7 | -- Nicola Asuni ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php: -------------------------------------------------------------------------------- 1 | ~#DATE#~ 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-color/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-file/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/ezyang/htmlpurifier/library'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt: -------------------------------------------------------------------------------- 1 | CSS.Proprietary 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Whether or not to allow safe, proprietary CSS values. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf-font/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf-graph/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf-image/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf-page/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-unicode/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-pdf-encrypt/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tc-lib-unicode-data/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PSR-12 for PHP less than 7.1 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Constants.php: -------------------------------------------------------------------------------- 1 | 8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.1.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier.path.php: -------------------------------------------------------------------------------- 1 | target=blank attributes are added to all outgoing links. 7 | (This includes links from an HTTPS version of a page to an HTTP version.) 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt: -------------------------------------------------------------------------------- 1 | HTML.XHTML 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.1.0 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor. 9 | --ALIASES-- 10 | Core.XHTML 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Internet.php: -------------------------------------------------------------------------------- 1 | 8 | Unique identifier for a custom-built URI definition. If you want 9 | to add custom URIFilters, you must specify this value. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Token/Empty.php: -------------------------------------------------------------------------------- 1 | empty = true; 11 | return $n; 12 | } 13 | } 14 | 15 | // vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Extension/CountryExtension.php: -------------------------------------------------------------------------------- 1 | 1] 8 | ]; // 1 row 9 | 10 | $config = ['driver'=>'array','data'=>$data]; 11 | $report = new PHPJasperXML(); 12 | $report->load_xml_file($filename) 13 | ->setDataSource($config) 14 | ->export('Pdf'); 15 | 16 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/hu_HU/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 8 | This directive turns on linkification, auto-linking http, ftp and 9 | https URLs. a tags with the href attribute 10 | must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeScripting 2 | TYPE: lookup 3 | VERSION: 4.5.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit script tags to external scripts in documents. 8 | Inline scripting is not allowed, and the script must match an explicit whitelist. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt: -------------------------------------------------------------------------------- 1 | Output.FlashCompat 2 | TYPE: bool 3 | VERSION: 4.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | If true, HTML Purifier will generate Internet Explorer compatibility 8 | code for all object code. This is highly recommended if you enable 9 | %HTML.SafeObject. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Internet.php: -------------------------------------------------------------------------------- 1 | 7 | By default, HTML Purifier removes duplicate CSS properties, 8 | like color:red; color:blue. If this is set to 9 | true, duplicate properties are allowed. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.css: -------------------------------------------------------------------------------- 1 | 2 | .hp-config {} 3 | 4 | .hp-config tbody th {text-align:right; padding-right:0.5em;} 5 | .hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;} 6 | .hp-config .namespace th {text-align:center;} 7 | .hp-config .verbose {display:none;} 8 | .hp-config .controls {text-align:center;} 9 | 10 | /* vim: et sw=4 sts=4 */ 11 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Internet.php: -------------------------------------------------------------------------------- 1 | 8 | Disables all URIs in all forms. Not sure why you'd want to do that 9 | (after all, the Internet's founded on the notion of a hyperlink). 10 |

11 | 12 | --ALIASES-- 13 | Attr.DisableURI 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Color.php: -------------------------------------------------------------------------------- 1 | 7 | Whether or not to normalize newlines to the operating 8 | system default. When false, HTML Purifier 9 | will attempt to preserve mixed newline files. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/lv_LV/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 9 | This directive enables HTML Purifier to remove not only script tags 10 | but all of their contents. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Container/ContainerException.php: -------------------------------------------------------------------------------- 1 | 'array','data'=>$data]; 9 | 10 | $report = new PHPJasperXML(); 11 | $report->load_xml_file($filename) 12 | ->setParameter(['subreportconnection'=>$config ]) 13 | ->setDataSource($config) 14 | ->export('Pdf'); 15 | 16 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt: -------------------------------------------------------------------------------- 1 | HTML.FlashAllowFullScreen 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit embedded Flash content from 8 | %HTML.SafeObject to expand to the full screen. Corresponds to 9 | the allowFullScreen parameter. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php: -------------------------------------------------------------------------------- 1 | 7 | This directive can be used to add custom filters; it is nearly the 8 | equivalent of the now deprecated HTMLPurifier->addFilter() 9 | method. Specify an array of concrete implementations. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt: -------------------------------------------------------------------------------- 1 | --# vim: et sw=4 sts=4 2 | HTML.TargetNoopener 3 | TYPE: bool 4 | VERSION: 4.8.0 5 | DEFAULT: TRUE 6 | --DESCRIPTION-- 7 | If enabled, noopener rel attributes are added to links which have 8 | a target attribute associated with them. This prevents malicious 9 | destinations from overwriting the original window. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt: -------------------------------------------------------------------------------- 1 | URI.HostBlacklist 2 | TYPE: list 3 | VERSION: 1.3.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of strings that are forbidden in the host of any URI. Use it to kill 7 | domain names of spam, etc. Note that it will catch anything in the domain, 8 | so moo.com will catch moo.com.example.com. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | charset = utf-8 7 | 8 | [*.{yml,md,xml}] 9 | indent_style = space 10 | indent_size = 2 11 | 12 | [*.{rst,php}] 13 | indent_style = space 14 | indent_size = 4 15 | 16 | [composer.json] 17 | indent_style = space 18 | indent_size = 2 19 | 20 | [composer.lock] 21 | indent_style = space 22 | indent_size = 4 23 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Custom 2 | TYPE: list 3 | VERSION: 2.0.1 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive can be used to add custom auto-format injectors. 9 | Specify an array of injector names (class name minus the prefix) 10 | or concrete implementations. Injector class must exist. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/el_CY/Internet.php: -------------------------------------------------------------------------------- 1 | 8 | String name of element that HTML fragment passed to library will be 9 | inserted in. An interesting variation would be using span as the 10 | parent element, meaning that only inline tags would be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/https.php: -------------------------------------------------------------------------------- 1 | 7 | This directive causes span tags without any attributes 8 | to be removed. It will also remove spans that had all attributes 9 | removed during processing. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Payment.php: -------------------------------------------------------------------------------- 1 | 8 | Internal auto-formatter that converts configuration directives in 9 | syntax %Namespace.Directive to links. a tags 10 | with the href attribute must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/de_CH/Company.php: -------------------------------------------------------------------------------- 1 | 7 | This directive turns on the in-text display of URIs in <a> tags, and disables 8 | those links. For example, example becomes 9 | example (http://example.com). 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Forms.txt: -------------------------------------------------------------------------------- 1 | HTML.Forms 2 | TYPE: bool 3 | VERSION: 4.13.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit form elements in the user input, regardless of 8 | %HTML.Trusted value. Please be very careful when using this functionality, as 9 | enabling forms in untrusted documents may allow for phishing attacks. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.OverrideAllowedSchemes 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | If this is set to true (which it is by default), you can override 6 | %URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the 7 | registry. If false, you will also have to update that directive in order 8 | to add more schemes. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/es_ES/Internet.php: -------------------------------------------------------------------------------- 1 | 7 | This directive allows parsing of many nested tags. 8 | If you set true, relaxes any hardcoded limit from the parser. 9 | However, in that case it may cause a Dos attack. 10 | Be careful when enabling it. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/es_VE/Internet.php: -------------------------------------------------------------------------------- 1 | 7 | Whether or not to allow proprietary elements and attributes in your 8 | documents, as per HTMLPurifier_HTMLModule_Proprietary. 9 | Warning: This can cause your documents to stop 10 | validating! 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Extension/UuidExtension.php: -------------------------------------------------------------------------------- 1 | 8 | Absolute path with no trailing slash to store serialized definitions in. 9 | Default is within the 10 | HTML Purifier library inside DefinitionCache/Serializer. This 11 | path must be writable by the webserver. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveInvalidImg 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.3.0 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive enables pre-emptive URI checking in img 9 | tags, as the attribute validation strategy is not authorized to 10 | remove elements from the document. Revert to pre-1.3.0 behavior by setting to false. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/el_CY/Company.php: -------------------------------------------------------------------------------- 1 | 8 | Location of configuration documentation to link to, let %s substitute 9 | into the configuration's namespace and directive names sans the percent 10 | sign. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/da_DK/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 7 | Allows you to manually specify a set of allowed fonts. If 8 | NULL, all fonts are allowed. This directive 9 | affects generic names (serif, sans-serif, monospace, cursive, 10 | fantasy) as well as specific font families. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/markbaker/matrix/infection.json.dist: -------------------------------------------------------------------------------- 1 | { 2 | "timeout": 1, 3 | "source": { 4 | "directories": [ 5 | "classes\/src" 6 | ] 7 | }, 8 | "logs": { 9 | "text": "build/infection/text.log", 10 | "summary": "build/infection/summary.log", 11 | "debug": "build/infection/debug.log", 12 | "perMutator": "build/infection/perMutator.md" 13 | }, 14 | "mutators": { 15 | "@default": true 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/config: -------------------------------------------------------------------------------- 1 | ############################################################ 2 | ## 3 | ## PhpSpreadsheet - locale settings 4 | ## 5 | ## Español (Spanish) 6 | ## 7 | ############################################################ 8 | 9 | ArgumentSeparator = ; 10 | 11 | ## 12 | ## Error Codes 13 | ## 14 | NULL = #¡NULO! 15 | DIV0 = #¡DIV/0! 16 | VALUE = #¡VALOR! 17 | REF = #¡REF! 18 | NAME = #¿NOMBRE? 19 | NUM = #¡NUM! 20 | NA 21 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/config: -------------------------------------------------------------------------------- 1 | ############################################################ 2 | ## 3 | ## PhpSpreadsheet - locale settings 4 | ## 5 | ## Türkçe (Turkish) 6 | ## 7 | ############################################################ 8 | 9 | ArgumentSeparator = ; 10 | 11 | ## 12 | ## Error Codes 13 | ## 14 | NULL = #BOŞ! 15 | DIV0 = #SAYI/0! 16 | VALUE = #DEĞER! 17 | REF = #BAŞV! 18 | NAME = #AD? 19 | NUM = #SAYI! 20 | NA = #YOK 21 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php: -------------------------------------------------------------------------------- 1 | 8 | Newline string to format final output with. If left null, HTML Purifier 9 | will auto-detect the default newline type of the system and use that; 10 | you can manually override it here. Remember, \r\n is Windows, \r 11 | is Mac, and \n is Unix. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Company.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', 10 | '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php', 11 | 'e39a8b23c42d4e1452234d762b03835a' => $vendorDir . '/ramsey/uuid/src/functions.php', 12 | ); 13 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ID.HTML5.txt: -------------------------------------------------------------------------------- 1 | Attr.ID.HTML5 2 | TYPE: bool/null 3 | DEFAULT: null 4 | VERSION: 4.8.0 5 | --DESCRIPTION-- 6 | In HTML5, restrictions on the format of the id attribute have been significantly 7 | relaxed, such that any string is valid so long as it contains no spaces and 8 | is at least one character. In lieu of a general HTML5 compatibility flag, 9 | set this configuration directive to true to use the relaxed rules. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/ORM/Doctrine/backward-compatibility.php: -------------------------------------------------------------------------------- 1 | true, 'th' => true) 5 | --DESCRIPTION-- 6 |

7 | When %AutoFormat.RemoveEmpty and %AutoFormat.RemoveEmpty.RemoveNbsp 8 | are enabled, this directive defines what HTML elements should not be 9 | removede if they have only a non-breaking space in them. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt: -------------------------------------------------------------------------------- 1 | Cache.DefinitionImpl 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: 'Serializer' 5 | --DESCRIPTION-- 6 | 7 | This directive defines which method to use when caching definitions, 8 | the complex data-type that makes HTML Purifier tick. Set to null 9 | to disable caching (not recommended, as you will see a definite 10 | performance degradation). 11 | 12 | --ALIASES-- 13 | Core.DefinitionCache 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'xml:lang' => 'LanguageCode', 16 | ) 17 | ); 18 | } 19 | 20 | // vim: et sw=4 sts=4 21 | -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/Exception/StreamNotReadableException.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'lang' => 'LanguageCode', 16 | ) 17 | ); 18 | } 19 | 20 | // vim: et sw=4 sts=4 21 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/en_CA/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 8 | Converts all URIs into absolute forms. This is useful when the HTML 9 | being filtered assumes a specific base path, but will actually be 10 | viewed in a different context (and setting an alternate base URI is 11 | not possible). %URI.Base must be set for this directive to work. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeIframe 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit iframe tags in untrusted documents. This 8 | directive must be accompanied by a whitelist of permitted iframes, 9 | such as %URI.SafeIframeRegexp, otherwise it will fatally error. 10 | This directive has no effect on strict doctypes, as iframes are not 11 | valid. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Extension/CompanyExtension.php: -------------------------------------------------------------------------------- 1 | <? ... 7 | ?>, remove it out-right. This may be useful if the HTML 8 | you are validating contains XML processing instruction gunk, however, 9 | it can also be user-unfriendly for people attempting to post PHP 10 | snippets. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Internet.php: -------------------------------------------------------------------------------- 1 | 7 | Defines through what scheme the output will be served, in order to 8 | select the proper object validator when no scheme information is present. 9 |

10 | 11 |

12 | Starting with HTML Purifier 4.9.0, the default scheme can be null, in 13 | which case we reject all URIs which do not have explicit schemes. 14 |

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/fr_BE/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 'mongodb', 11 | 'name'=>'test', 12 | 'connectionString'=>'mongodb://localhost:27017/test', 13 | ]; 14 | 15 | $report = new PHPJasperXML(); 16 | $report->load_xml_file($filename) 17 | ->setParameter(['reporttitle'=>'Database Report With Driver : '.$config['driver']]) 18 | ->setDataSource($config) 19 | ->export('Pdf'); 20 | 21 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ContentEditable.php: -------------------------------------------------------------------------------- 1 | get('HTML.Trusted')) { 9 | $allowed = array('', 'true', 'false'); 10 | } 11 | 12 | $enum = new HTMLPurifier_AttrDef_Enum($allowed); 13 | 14 | return $enum->validate($string, $config, $context); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Company.php: -------------------------------------------------------------------------------- 1 | 8 | Directory permissions of the files and directories created inside 9 | the DefinitionCache/Serializer or other custom serializer path. 10 |

11 |

12 | In HTML Purifier 4.8.0, this also supports NULL, 13 | which means that no chmod'ing or directory creation shall 14 | occur. 15 |

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt: -------------------------------------------------------------------------------- 1 | Core.CollectErrors 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 | Whether or not to collect errors found while filtering the document. This 8 | is a useful way to give feedback to your users. Warning: 9 | Currently this feature is very patchy and experimental, with lots of 10 | possible error messages not yet implemented. It will not cause any 11 | problems, but it may not help your users either. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fakerphp/faker/src/Faker/Provider/bg_BG/PhoneNumber.php: -------------------------------------------------------------------------------- 1 |