├── .gitattributes ├── README.md ├── composer.json └── minimee ├── LICENSE ├── MinimeePlugin.php ├── components ├── Minimee_ErrorException.php ├── Minimee_Exception.php ├── Minimee_InfoException.php └── Minimee_WarningException.php ├── config.php ├── enums └── MinimeeType.php ├── library ├── composer.json ├── composer.lock ├── composer.phar └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ └── installed.json │ ├── mrclay │ ├── jsmin-php │ │ ├── HISTORY.txt │ │ ├── LICENSE.txt │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ └── JSMin │ │ │ │ ├── JSMin.php │ │ │ │ ├── UnterminatedCommentException.php │ │ │ │ ├── UnterminatedRegExpException.php │ │ │ │ └── UnterminatedStringException.php │ │ ├── tests │ │ │ ├── Resources │ │ │ │ └── minify │ │ │ │ │ ├── expected │ │ │ │ │ ├── before.js │ │ │ │ │ ├── condcomm.js │ │ │ │ │ ├── issue144.js │ │ │ │ │ ├── issue256.js │ │ │ │ │ ├── keyword-regex.js │ │ │ │ │ ├── not-regexp.js │ │ │ │ │ ├── regexes.js │ │ │ │ │ ├── starts-regex.js │ │ │ │ │ └── token-regexp.js │ │ │ │ │ └── input │ │ │ │ │ ├── before.js │ │ │ │ │ ├── condcomm.js │ │ │ │ │ ├── issue144.js │ │ │ │ │ ├── issue256.js │ │ │ │ │ ├── keyword-regex.js │ │ │ │ │ ├── not-regexp.js │ │ │ │ │ ├── regexes.js │ │ │ │ │ ├── starts-regex.js │ │ │ │ │ └── token-regexp.js │ │ │ ├── Tests │ │ │ │ └── JSMin │ │ │ │ │ └── JSMinTest.php │ │ │ └── bootstrap.php │ │ └── web │ │ │ ├── README.txt │ │ │ └── index.php │ └── minify │ │ ├── HISTORY.txt │ │ ├── LICENSE.txt │ │ ├── MIN.txt │ │ ├── README.md │ │ ├── UPGRADING.txt │ │ ├── composer.json │ │ ├── docs │ │ ├── AlternateFileLayouts.wiki.md │ │ ├── BuilderApp.wiki.md │ │ ├── CommonProblems.wiki.md │ │ ├── ComponentClasses.wiki.md │ │ ├── CookBook.wiki.md │ │ ├── CustomServer.wiki.md │ │ ├── CustomSource.wiki.md │ │ ├── Debugging.wiki.md │ │ ├── FAQ.wiki.md │ │ ├── MinApp.wiki.md │ │ ├── TestingMinify.wiki.md │ │ ├── UriRewriting.wiki.md │ │ ├── UserGuide.wiki.md │ │ └── old │ │ │ ├── History.wiki.md │ │ │ ├── HowItWorks.wiki.md │ │ │ ├── HttpCaching.wiki.md │ │ │ ├── ProjectGoals.wiki.md │ │ │ ├── Security.wiki.md │ │ │ └── VersionTwo.wiki.md │ │ └── min │ │ ├── .htaccess │ │ ├── builder │ │ ├── .htaccess │ │ ├── _index.js │ │ ├── bm.js │ │ ├── bm2.js │ │ ├── index.php │ │ ├── jquery-1.6.3.min.js │ │ ├── ocCheck.php │ │ ├── rewriteTest.js │ │ └── test.php │ │ ├── config-test.php │ │ ├── config.php │ │ ├── groupsConfig.php │ │ ├── index.php │ │ ├── lib │ │ ├── CSSmin.php │ │ ├── DooDigestAuth.php │ │ ├── FirePHP.php │ │ ├── HTTP │ │ │ ├── ConditionalGet.php │ │ │ └── Encoder.php │ │ ├── JSMin.php │ │ ├── JSMinPlus.php │ │ ├── Minify.php │ │ ├── Minify │ │ │ ├── Build.php │ │ │ ├── CSS.php │ │ │ ├── CSS │ │ │ │ ├── Compressor.php │ │ │ │ └── UriRewriter.php │ │ │ ├── CSSmin.php │ │ │ ├── Cache │ │ │ │ ├── APC.php │ │ │ │ ├── File.php │ │ │ │ ├── Memcache.php │ │ │ │ ├── WinCache.php │ │ │ │ ├── XCache.php │ │ │ │ └── ZendPlatform.php │ │ │ ├── ClosureCompiler.php │ │ │ ├── CommentPreserver.php │ │ │ ├── Controller │ │ │ │ ├── Base.php │ │ │ │ ├── Files.php │ │ │ │ ├── Groups.php │ │ │ │ ├── MinApp.php │ │ │ │ ├── Page.php │ │ │ │ └── Version1.php │ │ │ ├── DebugDetector.php │ │ │ ├── HTML.php │ │ │ ├── HTML │ │ │ │ └── Helper.php │ │ │ ├── ImportProcessor.php │ │ │ ├── JS │ │ │ │ └── ClosureCompiler.php │ │ │ ├── Lines.php │ │ │ ├── Loader.php │ │ │ ├── Logger.php │ │ │ ├── Packer.php │ │ │ ├── Source.php │ │ │ ├── YUI │ │ │ │ ├── CssCompressor.java │ │ │ │ └── CssCompressor.php │ │ │ └── YUICompressor.php │ │ └── MrClay │ │ │ ├── Cli.php │ │ │ └── Cli │ │ │ └── Arg.php │ │ ├── quick-test.css │ │ ├── quick-test.js │ │ ├── server-info.php │ │ └── utils.php │ └── selvinortiz │ └── zit │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── etc │ ├── ZitExample.php │ └── ZitMocks.php │ ├── phpunit.xml │ ├── src │ └── SelvinOrtiz │ │ └── Zit │ │ ├── IZit.php │ │ └── Zit.php │ └── tests │ └── ZitTest.php ├── migrations └── m140713_000000_minimee_ChangeTagToReturnSettingsFieldNames.php ├── models ├── Minimee_BaseAssetModel.php ├── Minimee_IAssetModel.php ├── Minimee_ISettingsModel.php ├── Minimee_LocalAssetModel.php ├── Minimee_RemoteAssetModel.php └── Minimee_SettingsModel.php ├── resources ├── icon.svg └── img │ └── settings.png ├── services └── MinimeeService.php ├── templates └── settings.html ├── twigextensions └── MinimeeTwigExtension.php └── variables └── MinimeeVariable.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/composer.json -------------------------------------------------------------------------------- /minimee/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/LICENSE -------------------------------------------------------------------------------- /minimee/MinimeePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/MinimeePlugin.php -------------------------------------------------------------------------------- /minimee/components/Minimee_ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/components/Minimee_ErrorException.php -------------------------------------------------------------------------------- /minimee/components/Minimee_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/components/Minimee_Exception.php -------------------------------------------------------------------------------- /minimee/components/Minimee_InfoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/components/Minimee_InfoException.php -------------------------------------------------------------------------------- /minimee/components/Minimee_WarningException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/components/Minimee_WarningException.php -------------------------------------------------------------------------------- /minimee/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/config.php -------------------------------------------------------------------------------- /minimee/enums/MinimeeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/enums/MinimeeType.php -------------------------------------------------------------------------------- /minimee/library/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/composer.json -------------------------------------------------------------------------------- /minimee/library/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/composer.lock -------------------------------------------------------------------------------- /minimee/library/composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/composer.phar -------------------------------------------------------------------------------- /minimee/library/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/autoload.php -------------------------------------------------------------------------------- /minimee/library/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /minimee/library/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/composer/LICENSE -------------------------------------------------------------------------------- /minimee/library/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /minimee/library/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /minimee/library/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /minimee/library/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /minimee/library/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/composer/installed.json -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/HISTORY.txt -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/LICENSE.txt -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/composer.json -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/phpunit.xml.dist -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/src/JSMin/JSMin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/src/JSMin/JSMin.php -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedCommentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedCommentException.php -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedRegExpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedRegExpException.php -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedStringException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedStringException.php -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/before.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/before.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/condcomm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/condcomm.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/issue144.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/issue144.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/issue256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/issue256.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/keyword-regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/keyword-regex.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/not-regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/not-regexp.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/regexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/regexes.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/starts-regex.js: -------------------------------------------------------------------------------- 1 | /return/.test(bar); -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/expected/token-regexp.js: -------------------------------------------------------------------------------- 1 | typeof[/return/]; -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/before.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/before.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/condcomm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/condcomm.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/issue144.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/issue144.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/issue256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/issue256.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/keyword-regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/keyword-regex.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/not-regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/not-regexp.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/regexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/regexes.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/starts-regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/starts-regex.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/token-regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Resources/minify/input/token-regexp.js -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/Tests/JSMin/JSMinTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndwells/craft.minimee/HEAD/minimee/library/vendor/mrclay/jsmin-php/tests/Tests/JSMin/JSMinTest.php -------------------------------------------------------------------------------- /minimee/library/vendor/mrclay/jsmin-php/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |