├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── DotsUnited │ └── BundleFu │ ├── Bundle.php │ ├── Factory.php │ ├── FileList.php │ └── Filter │ ├── CallbackFilter.php │ ├── ClosureCompilerServiceFilter.php │ ├── CssUrlRewriteFilter.php │ ├── FilterChain.php │ └── FilterInterface.php └── tests └── DotsUnited └── BundleFu └── Tests ├── BundleTest.php ├── FactoryTest.php ├── Filter ├── CallbackFilterTest.php ├── ClosureCompilerServiceFilterTest.php ├── CssUrlRewriteFilterTest.php └── FilterChainTest.php ├── TestCase.php └── _files ├── css ├── css_1.css ├── css_2.css └── css_3.css └── js ├── js_1.js ├── js_2.js └── js_3.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/DotsUnited/BundleFu/Bundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/src/DotsUnited/BundleFu/Bundle.php -------------------------------------------------------------------------------- /src/DotsUnited/BundleFu/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/src/DotsUnited/BundleFu/Factory.php -------------------------------------------------------------------------------- /src/DotsUnited/BundleFu/FileList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/src/DotsUnited/BundleFu/FileList.php -------------------------------------------------------------------------------- /src/DotsUnited/BundleFu/Filter/CallbackFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/src/DotsUnited/BundleFu/Filter/CallbackFilter.php -------------------------------------------------------------------------------- /src/DotsUnited/BundleFu/Filter/ClosureCompilerServiceFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/src/DotsUnited/BundleFu/Filter/ClosureCompilerServiceFilter.php -------------------------------------------------------------------------------- /src/DotsUnited/BundleFu/Filter/CssUrlRewriteFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/src/DotsUnited/BundleFu/Filter/CssUrlRewriteFilter.php -------------------------------------------------------------------------------- /src/DotsUnited/BundleFu/Filter/FilterChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/src/DotsUnited/BundleFu/Filter/FilterChain.php -------------------------------------------------------------------------------- /src/DotsUnited/BundleFu/Filter/FilterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/src/DotsUnited/BundleFu/Filter/FilterInterface.php -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/BundleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/tests/DotsUnited/BundleFu/Tests/BundleTest.php -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/tests/DotsUnited/BundleFu/Tests/FactoryTest.php -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/Filter/CallbackFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/tests/DotsUnited/BundleFu/Tests/Filter/CallbackFilterTest.php -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/Filter/ClosureCompilerServiceFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/tests/DotsUnited/BundleFu/Tests/Filter/ClosureCompilerServiceFilterTest.php -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/Filter/CssUrlRewriteFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/tests/DotsUnited/BundleFu/Tests/Filter/CssUrlRewriteFilterTest.php -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/Filter/FilterChainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/tests/DotsUnited/BundleFu/Tests/Filter/FilterChainTest.php -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/tests/DotsUnited/BundleFu/Tests/TestCase.php -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/_files/css/css_1.css: -------------------------------------------------------------------------------- 1 | css_1 { } 2 | -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/_files/css/css_2.css: -------------------------------------------------------------------------------- 1 | css_2 2 | -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/_files/css/css_3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/tests/DotsUnited/BundleFu/Tests/_files/css/css_3.css -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/_files/js/js_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotsunited/BundleFu/HEAD/tests/DotsUnited/BundleFu/Tests/_files/js/js_1.js -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/_files/js/js_2.js: -------------------------------------------------------------------------------- 1 | function js_2() { alert('hi');}; 2 | -------------------------------------------------------------------------------- /tests/DotsUnited/BundleFu/Tests/_files/js/js_3.js: -------------------------------------------------------------------------------- 1 | function js_3() { alert('hi')}; 2 | --------------------------------------------------------------------------------