├── .docs └── README.md ├── .editorconfig ├── .github ├── .kodiak.toml └── workflows │ ├── codesniffer.yml │ ├── coverage.yml │ ├── phpstan.yml │ └── tests.yml ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── phpstan.neon ├── ruleset.xml └── src ├── Exceptions ├── InvalidArgumentException.php ├── InvalidStateException.php ├── LogicalException.php └── MissingServiceException.php ├── PdfResponse.php └── PdfResponseFactory.php /.docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/.docs/README.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/.github/.kodiak.toml -------------------------------------------------------------------------------- /.github/workflows/codesniffer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/.github/workflows/codesniffer.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/phpstan.neon -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/ruleset.xml -------------------------------------------------------------------------------- /src/Exceptions/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/src/Exceptions/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidStateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/src/Exceptions/InvalidStateException.php -------------------------------------------------------------------------------- /src/Exceptions/LogicalException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/src/Exceptions/LogicalException.php -------------------------------------------------------------------------------- /src/Exceptions/MissingServiceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/src/Exceptions/MissingServiceException.php -------------------------------------------------------------------------------- /src/PdfResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/src/PdfResponse.php -------------------------------------------------------------------------------- /src/PdfResponseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/pdf/HEAD/src/PdfResponseFactory.php --------------------------------------------------------------------------------