├── .meta-storm.xml ├── .php-cs-fixer.dist.php ├── .phpunit-watcher.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer-require-checker.json ├── composer.json ├── infection.json.dist ├── psalm.xml ├── rector.php └── src ├── Html.php ├── NoEncode.php ├── NoEncodeStringableInterface.php ├── Tag ├── A.php ├── Address.php ├── Article.php ├── Aside.php ├── Audio.php ├── B.php ├── Base │ ├── BooleanInputTag.php │ ├── InputTag.php │ ├── ListTag.php │ ├── MediaTag.php │ ├── NormalTag.php │ ├── TableCellTag.php │ ├── TableRowsContainerTag.php │ ├── Tag.php │ ├── TagContentTrait.php │ ├── TagSourcesTrait.php │ └── VoidTag.php ├── Body.php ├── Br.php ├── Button.php ├── Caption.php ├── Code.php ├── Col.php ├── Colgroup.php ├── CustomTag.php ├── Datalist.php ├── Div.php ├── Em.php ├── Fieldset.php ├── Footer.php ├── Form.php ├── H1.php ├── H2.php ├── H3.php ├── H4.php ├── H5.php ├── H6.php ├── Header.php ├── Hgroup.php ├── Hr.php ├── Html.php ├── I.php ├── Img.php ├── Input.php ├── Input │ ├── Checkbox.php │ ├── Color.php │ ├── File.php │ ├── Radio.php │ └── Range.php ├── Label.php ├── Legend.php ├── Li.php ├── Link.php ├── Meta.php ├── Nav.php ├── Noscript.php ├── Ol.php ├── Optgroup.php ├── Option.php ├── P.php ├── Picture.php ├── Pre.php ├── Script.php ├── Section.php ├── Select.php ├── Small.php ├── Source.php ├── Span.php ├── Strong.php ├── Style.php ├── Table.php ├── Tbody.php ├── Td.php ├── Textarea.php ├── Tfoot.php ├── Th.php ├── Thead.php ├── Title.php ├── Tr.php ├── Track.php ├── Ul.php └── Video.php └── Widget ├── ButtonGroup.php ├── CheckboxList ├── CheckboxItem.php └── CheckboxList.php └── RadioList ├── RadioItem.php └── RadioList.php /.meta-storm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/.meta-storm.xml -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.phpunit-watcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/.phpunit-watcher.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/README.md -------------------------------------------------------------------------------- /composer-require-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/composer-require-checker.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/composer.json -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/infection.json.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/psalm.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/rector.php -------------------------------------------------------------------------------- /src/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Html.php -------------------------------------------------------------------------------- /src/NoEncode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/NoEncode.php -------------------------------------------------------------------------------- /src/NoEncodeStringableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/NoEncodeStringableInterface.php -------------------------------------------------------------------------------- /src/Tag/A.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/A.php -------------------------------------------------------------------------------- /src/Tag/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Address.php -------------------------------------------------------------------------------- /src/Tag/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Article.php -------------------------------------------------------------------------------- /src/Tag/Aside.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Aside.php -------------------------------------------------------------------------------- /src/Tag/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Audio.php -------------------------------------------------------------------------------- /src/Tag/B.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/B.php -------------------------------------------------------------------------------- /src/Tag/Base/BooleanInputTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/BooleanInputTag.php -------------------------------------------------------------------------------- /src/Tag/Base/InputTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/InputTag.php -------------------------------------------------------------------------------- /src/Tag/Base/ListTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/ListTag.php -------------------------------------------------------------------------------- /src/Tag/Base/MediaTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/MediaTag.php -------------------------------------------------------------------------------- /src/Tag/Base/NormalTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/NormalTag.php -------------------------------------------------------------------------------- /src/Tag/Base/TableCellTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/TableCellTag.php -------------------------------------------------------------------------------- /src/Tag/Base/TableRowsContainerTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/TableRowsContainerTag.php -------------------------------------------------------------------------------- /src/Tag/Base/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/Tag.php -------------------------------------------------------------------------------- /src/Tag/Base/TagContentTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/TagContentTrait.php -------------------------------------------------------------------------------- /src/Tag/Base/TagSourcesTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/TagSourcesTrait.php -------------------------------------------------------------------------------- /src/Tag/Base/VoidTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Base/VoidTag.php -------------------------------------------------------------------------------- /src/Tag/Body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Body.php -------------------------------------------------------------------------------- /src/Tag/Br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Br.php -------------------------------------------------------------------------------- /src/Tag/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Button.php -------------------------------------------------------------------------------- /src/Tag/Caption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Caption.php -------------------------------------------------------------------------------- /src/Tag/Code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Code.php -------------------------------------------------------------------------------- /src/Tag/Col.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Col.php -------------------------------------------------------------------------------- /src/Tag/Colgroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Colgroup.php -------------------------------------------------------------------------------- /src/Tag/CustomTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/CustomTag.php -------------------------------------------------------------------------------- /src/Tag/Datalist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Datalist.php -------------------------------------------------------------------------------- /src/Tag/Div.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Div.php -------------------------------------------------------------------------------- /src/Tag/Em.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Em.php -------------------------------------------------------------------------------- /src/Tag/Fieldset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Fieldset.php -------------------------------------------------------------------------------- /src/Tag/Footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Footer.php -------------------------------------------------------------------------------- /src/Tag/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Form.php -------------------------------------------------------------------------------- /src/Tag/H1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/H1.php -------------------------------------------------------------------------------- /src/Tag/H2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/H2.php -------------------------------------------------------------------------------- /src/Tag/H3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/H3.php -------------------------------------------------------------------------------- /src/Tag/H4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/H4.php -------------------------------------------------------------------------------- /src/Tag/H5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/H5.php -------------------------------------------------------------------------------- /src/Tag/H6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/H6.php -------------------------------------------------------------------------------- /src/Tag/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Header.php -------------------------------------------------------------------------------- /src/Tag/Hgroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Hgroup.php -------------------------------------------------------------------------------- /src/Tag/Hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Hr.php -------------------------------------------------------------------------------- /src/Tag/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Html.php -------------------------------------------------------------------------------- /src/Tag/I.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/I.php -------------------------------------------------------------------------------- /src/Tag/Img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Img.php -------------------------------------------------------------------------------- /src/Tag/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Input.php -------------------------------------------------------------------------------- /src/Tag/Input/Checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Input/Checkbox.php -------------------------------------------------------------------------------- /src/Tag/Input/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Input/Color.php -------------------------------------------------------------------------------- /src/Tag/Input/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Input/File.php -------------------------------------------------------------------------------- /src/Tag/Input/Radio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Input/Radio.php -------------------------------------------------------------------------------- /src/Tag/Input/Range.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Input/Range.php -------------------------------------------------------------------------------- /src/Tag/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Label.php -------------------------------------------------------------------------------- /src/Tag/Legend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Legend.php -------------------------------------------------------------------------------- /src/Tag/Li.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Li.php -------------------------------------------------------------------------------- /src/Tag/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Link.php -------------------------------------------------------------------------------- /src/Tag/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Meta.php -------------------------------------------------------------------------------- /src/Tag/Nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Nav.php -------------------------------------------------------------------------------- /src/Tag/Noscript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Noscript.php -------------------------------------------------------------------------------- /src/Tag/Ol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Ol.php -------------------------------------------------------------------------------- /src/Tag/Optgroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Optgroup.php -------------------------------------------------------------------------------- /src/Tag/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Option.php -------------------------------------------------------------------------------- /src/Tag/P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/P.php -------------------------------------------------------------------------------- /src/Tag/Picture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Picture.php -------------------------------------------------------------------------------- /src/Tag/Pre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Pre.php -------------------------------------------------------------------------------- /src/Tag/Script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Script.php -------------------------------------------------------------------------------- /src/Tag/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Section.php -------------------------------------------------------------------------------- /src/Tag/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Select.php -------------------------------------------------------------------------------- /src/Tag/Small.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Small.php -------------------------------------------------------------------------------- /src/Tag/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Source.php -------------------------------------------------------------------------------- /src/Tag/Span.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Span.php -------------------------------------------------------------------------------- /src/Tag/Strong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Strong.php -------------------------------------------------------------------------------- /src/Tag/Style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Style.php -------------------------------------------------------------------------------- /src/Tag/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Table.php -------------------------------------------------------------------------------- /src/Tag/Tbody.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Tbody.php -------------------------------------------------------------------------------- /src/Tag/Td.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Td.php -------------------------------------------------------------------------------- /src/Tag/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Textarea.php -------------------------------------------------------------------------------- /src/Tag/Tfoot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Tfoot.php -------------------------------------------------------------------------------- /src/Tag/Th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Th.php -------------------------------------------------------------------------------- /src/Tag/Thead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Thead.php -------------------------------------------------------------------------------- /src/Tag/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Title.php -------------------------------------------------------------------------------- /src/Tag/Tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Tr.php -------------------------------------------------------------------------------- /src/Tag/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Track.php -------------------------------------------------------------------------------- /src/Tag/Ul.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Ul.php -------------------------------------------------------------------------------- /src/Tag/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Tag/Video.php -------------------------------------------------------------------------------- /src/Widget/ButtonGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Widget/ButtonGroup.php -------------------------------------------------------------------------------- /src/Widget/CheckboxList/CheckboxItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Widget/CheckboxList/CheckboxItem.php -------------------------------------------------------------------------------- /src/Widget/CheckboxList/CheckboxList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Widget/CheckboxList/CheckboxList.php -------------------------------------------------------------------------------- /src/Widget/RadioList/RadioItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Widget/RadioList/RadioItem.php -------------------------------------------------------------------------------- /src/Widget/RadioList/RadioList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/html/HEAD/src/Widget/RadioList/RadioList.php --------------------------------------------------------------------------------