├── .gitignore ├── Builder.php ├── Config.php ├── Exception.php ├── Extractor.php ├── LICENSE ├── README.md ├── Resources └── views │ └── default │ ├── index.html │ └── partial │ ├── main.html │ ├── paramContentTpl.html │ ├── paramSampleBtnTpl.html │ ├── paramTableTpl.html │ ├── samplePostBodyTpl.html │ ├── sampleReponseHeaderTpl.html │ ├── sampleReponseTpl.html │ ├── sandboxFormInputTpl.html │ └── sandboxFormTpl.html ├── Response.php ├── Template.php ├── TestClasses ├── Article.php └── User.php ├── View.php ├── View ├── BaseView.php ├── JsonView.php └── ViewInterface.php └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .project 3 | .settings 4 | -------------------------------------------------------------------------------- /Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Builder.php -------------------------------------------------------------------------------- /Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Config.php -------------------------------------------------------------------------------- /Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Exception.php -------------------------------------------------------------------------------- /Extractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Extractor.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/README.md -------------------------------------------------------------------------------- /Resources/views/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Resources/views/default/index.html -------------------------------------------------------------------------------- /Resources/views/default/partial/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Resources/views/default/partial/main.html -------------------------------------------------------------------------------- /Resources/views/default/partial/paramContentTpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Resources/views/default/partial/paramContentTpl.html -------------------------------------------------------------------------------- /Resources/views/default/partial/paramSampleBtnTpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Resources/views/default/partial/paramSampleBtnTpl.html -------------------------------------------------------------------------------- /Resources/views/default/partial/paramTableTpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Resources/views/default/partial/paramTableTpl.html -------------------------------------------------------------------------------- /Resources/views/default/partial/samplePostBodyTpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Resources/views/default/partial/samplePostBodyTpl.html -------------------------------------------------------------------------------- /Resources/views/default/partial/sampleReponseHeaderTpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Resources/views/default/partial/sampleReponseHeaderTpl.html -------------------------------------------------------------------------------- /Resources/views/default/partial/sampleReponseTpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Resources/views/default/partial/sampleReponseTpl.html -------------------------------------------------------------------------------- /Resources/views/default/partial/sandboxFormInputTpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Resources/views/default/partial/sandboxFormInputTpl.html -------------------------------------------------------------------------------- /Resources/views/default/partial/sandboxFormTpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Resources/views/default/partial/sandboxFormTpl.html -------------------------------------------------------------------------------- /Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Response.php -------------------------------------------------------------------------------- /Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/Template.php -------------------------------------------------------------------------------- /TestClasses/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/TestClasses/Article.php -------------------------------------------------------------------------------- /TestClasses/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/TestClasses/User.php -------------------------------------------------------------------------------- /View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/View.php -------------------------------------------------------------------------------- /View/BaseView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/View/BaseView.php -------------------------------------------------------------------------------- /View/JsonView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/View/JsonView.php -------------------------------------------------------------------------------- /View/ViewInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/View/ViewInterface.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calinrada/php-apidoc/HEAD/composer.json --------------------------------------------------------------------------------