├── .codeclimate.yml ├── .github └── workflows │ └── phpunit.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RoboFile.php ├── composer.json ├── phpunit.xml.dist ├── src ├── Drafter.php └── DrafterInterface.php └── tests ├── DrafterTest.php ├── bootstrap.php └── fixtures └── simplest-example.apib /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | ext/ 3 | vendor/ 4 | composer.lock 5 | phpunit.xml 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/README.md -------------------------------------------------------------------------------- /RoboFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/RoboFile.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Drafter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/src/Drafter.php -------------------------------------------------------------------------------- /src/DrafterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/src/DrafterInterface.php -------------------------------------------------------------------------------- /tests/DrafterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmaus/drafter-php/HEAD/tests/DrafterTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |