├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── phpunit.yml │ └── psalm.yml ├── .php-cs-fixer.dist.php ├── LICENSE ├── README.md ├── composer.json ├── psalm.xml ├── src ├── Command.php ├── DataFields.php ├── FdfFile.php ├── InfoFields.php ├── InfoFile.php ├── Pdf.php └── XfdfFile.php └── vendor-bin ├── coding-standard └── composer.json ├── phpunit └── composer.json └── psalm └── composer.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.github/workflows/psalm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/.github/workflows/psalm.yml -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/composer.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/src/Command.php -------------------------------------------------------------------------------- /src/DataFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/src/DataFields.php -------------------------------------------------------------------------------- /src/FdfFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/src/FdfFile.php -------------------------------------------------------------------------------- /src/InfoFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/src/InfoFields.php -------------------------------------------------------------------------------- /src/InfoFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/src/InfoFile.php -------------------------------------------------------------------------------- /src/Pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/src/Pdf.php -------------------------------------------------------------------------------- /src/XfdfFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/src/XfdfFile.php -------------------------------------------------------------------------------- /vendor-bin/coding-standard/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/vendor-bin/coding-standard/composer.json -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/vendor-bin/phpunit/composer.json -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikehaertl/php-pdftk/HEAD/vendor-bin/psalm/composer.json --------------------------------------------------------------------------------