├── .gitignore ├── .travis.yml ├── AthosHun └── HTMLFilter │ ├── Configuration.php │ ├── ConfigurationTest.php │ ├── HTMLFilter.php │ └── HTMLFilterTest.php ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── phpunit.xml.dist └── sami.config.php /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | tmp 3 | phpunit.xml 4 | composer.lock 5 | vendor 6 | docs 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/.travis.yml -------------------------------------------------------------------------------- /AthosHun/HTMLFilter/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/AthosHun/HTMLFilter/Configuration.php -------------------------------------------------------------------------------- /AthosHun/HTMLFilter/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/AthosHun/HTMLFilter/ConfigurationTest.php -------------------------------------------------------------------------------- /AthosHun/HTMLFilter/HTMLFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/AthosHun/HTMLFilter/HTMLFilter.php -------------------------------------------------------------------------------- /AthosHun/HTMLFilter/HTMLFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/AthosHun/HTMLFilter/HTMLFilterTest.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /sami.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilammagyar/html-filter/HEAD/sami.config.php --------------------------------------------------------------------------------