├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist └── src └── Pandoc ├── Pandoc.php ├── PandocException.php └── Tests └── PandocTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryakad/pandoc-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryakad/pandoc-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryakad/pandoc-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryakad/pandoc-php/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryakad/pandoc-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Pandoc/Pandoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryakad/pandoc-php/HEAD/src/Pandoc/Pandoc.php -------------------------------------------------------------------------------- /src/Pandoc/PandocException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryakad/pandoc-php/HEAD/src/Pandoc/PandocException.php -------------------------------------------------------------------------------- /src/Pandoc/Tests/PandocTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryakad/pandoc-php/HEAD/src/Pandoc/Tests/PandocTest.php --------------------------------------------------------------------------------