├── .gitignore ├── .scrutinizer.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml.dist ├── src └── View.php └── tests ├── bootstrap.php ├── files ├── line_comments.txt └── no_line_comments.txt └── unit ├── JsCommentRemovalTest.php └── _bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/src/View.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/files/line_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/tests/files/line_comments.txt -------------------------------------------------------------------------------- /tests/files/no_line_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/tests/files/no_line_comments.txt -------------------------------------------------------------------------------- /tests/unit/JsCommentRemovalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/tests/unit/JsCommentRemovalTest.php -------------------------------------------------------------------------------- /tests/unit/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogheo/yii2-htmlcompress/HEAD/tests/unit/_bootstrap.php --------------------------------------------------------------------------------