├── .dockerignore ├── .github ├── CODEOWNERS └── workflows │ ├── build.yml │ ├── docker.yml │ ├── publish.yml │ └── sonarqube-cloud.yml ├── .phive └── phars.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Docker.README.md ├── Dockerfile ├── LICENSE ├── README.md ├── bin └── cfditopdf ├── composer.json ├── docs ├── CHANGELOG.md └── TODO.md ├── src ├── Builders │ ├── BuilderInterface.php │ ├── Html2PdfBuilder.php │ └── HtmlTranslators │ │ ├── HtmlTranslatorInterface.php │ │ └── PlatesHtmlTranslator.php ├── Catalogs │ ├── CatalogsInterface.php │ └── StaticCatalogs.php ├── CfdiData.php ├── CfdiDataBuilder.php ├── Converter.php ├── Internal │ └── CastToStringTrait.php └── Script │ ├── ConvertOptions.php │ └── ConvertScript.php └── templates └── generic.php /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/sonarqube-cloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/.github/workflows/sonarqube-cloud.yml -------------------------------------------------------------------------------- /.phive/phars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/.phive/phars.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Docker.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/Docker.README.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/README.md -------------------------------------------------------------------------------- /bin/cfditopdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/bin/cfditopdf -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/composer.json -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/docs/TODO.md -------------------------------------------------------------------------------- /src/Builders/BuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/Builders/BuilderInterface.php -------------------------------------------------------------------------------- /src/Builders/Html2PdfBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/Builders/Html2PdfBuilder.php -------------------------------------------------------------------------------- /src/Builders/HtmlTranslators/HtmlTranslatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/Builders/HtmlTranslators/HtmlTranslatorInterface.php -------------------------------------------------------------------------------- /src/Builders/HtmlTranslators/PlatesHtmlTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/Builders/HtmlTranslators/PlatesHtmlTranslator.php -------------------------------------------------------------------------------- /src/Catalogs/CatalogsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/Catalogs/CatalogsInterface.php -------------------------------------------------------------------------------- /src/Catalogs/StaticCatalogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/Catalogs/StaticCatalogs.php -------------------------------------------------------------------------------- /src/CfdiData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/CfdiData.php -------------------------------------------------------------------------------- /src/CfdiDataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/CfdiDataBuilder.php -------------------------------------------------------------------------------- /src/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/Converter.php -------------------------------------------------------------------------------- /src/Internal/CastToStringTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/Internal/CastToStringTrait.php -------------------------------------------------------------------------------- /src/Script/ConvertOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/Script/ConvertOptions.php -------------------------------------------------------------------------------- /src/Script/ConvertScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/src/Script/ConvertScript.php -------------------------------------------------------------------------------- /templates/generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/cfditopdf/HEAD/templates/generic.php --------------------------------------------------------------------------------