├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Element │ ├── Comment.php │ ├── Element.php │ ├── Tag.php │ └── Text.php └── PhpHtmlBuilder.php └── tests └── PhpHtmlBuilderTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Element/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/src/Element/Comment.php -------------------------------------------------------------------------------- /src/Element/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/src/Element/Element.php -------------------------------------------------------------------------------- /src/Element/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/src/Element/Tag.php -------------------------------------------------------------------------------- /src/Element/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/src/Element/Text.php -------------------------------------------------------------------------------- /src/PhpHtmlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/src/PhpHtmlBuilder.php -------------------------------------------------------------------------------- /tests/PhpHtmlBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplab/php-html-builder/HEAD/tests/PhpHtmlBuilderTest.php --------------------------------------------------------------------------------