├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Module.php ├── README.md ├── Vagrantfile ├── assets ├── .gitignore ├── css │ └── global.css └── js │ └── test.js ├── bin └── assetic ├── composer.json ├── composer.lock ├── configs ├── assets.config.php.dist └── module.config.php ├── docs ├── config.md ├── howto.md ├── index.md └── tips.md ├── phpunit.xml.dist ├── src └── AsseticBundle │ ├── CacheBuster │ ├── LastModifiedStrategy.php │ ├── NoCache.php │ └── Null.php │ ├── Cli │ ├── ApplicationFactory.php │ ├── BuildCommand.php │ └── SetupCommand.php │ ├── Configuration.php │ ├── Exception │ ├── BadMethodCallException.php │ ├── DomainException.php │ ├── InvalidArgumentException.php │ └── RuntimeException.php │ ├── Factory │ └── ConfigurationFactory.php │ ├── FilterManager.php │ ├── FilterManagerFactory.php │ ├── Listener.php │ ├── Service.php │ ├── ServiceFactory.php │ ├── View │ ├── AbstractStrategy.php │ ├── Helper │ │ └── Asset.php │ ├── NoneStrategy.php │ ├── StrategyInterface.php │ └── ViewHelperStrategy.php │ └── WriterFactory.php ├── tests ├── AsseticBundleTest │ ├── CacheBuster │ │ └── LastModifiedStrategyTest.php │ ├── Configuration.php │ ├── FilterManager.php │ └── Service.php ├── Bootstrap.php ├── assets │ ├── css │ │ └── global.css │ ├── fonts │ │ └── testfont.txt │ ├── images │ │ └── admon-bug.png │ └── js │ │ └── test.js ├── cache │ └── .gitignore └── public │ └── .gitignore └── views └── asseticexample └── index.phtml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/Module.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/Vagrantfile -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /assets/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/assets/css/global.css -------------------------------------------------------------------------------- /assets/js/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/assets/js/test.js -------------------------------------------------------------------------------- /bin/assetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/bin/assetic -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/composer.lock -------------------------------------------------------------------------------- /configs/assets.config.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/configs/assets.config.php.dist -------------------------------------------------------------------------------- /configs/module.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/configs/module.config.php -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/docs/howto.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/docs/tips.md -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AsseticBundle/CacheBuster/LastModifiedStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/CacheBuster/LastModifiedStrategy.php -------------------------------------------------------------------------------- /src/AsseticBundle/CacheBuster/NoCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/CacheBuster/NoCache.php -------------------------------------------------------------------------------- /src/AsseticBundle/CacheBuster/Null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/CacheBuster/Null.php -------------------------------------------------------------------------------- /src/AsseticBundle/Cli/ApplicationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Cli/ApplicationFactory.php -------------------------------------------------------------------------------- /src/AsseticBundle/Cli/BuildCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Cli/BuildCommand.php -------------------------------------------------------------------------------- /src/AsseticBundle/Cli/SetupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Cli/SetupCommand.php -------------------------------------------------------------------------------- /src/AsseticBundle/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Configuration.php -------------------------------------------------------------------------------- /src/AsseticBundle/Exception/BadMethodCallException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Exception/BadMethodCallException.php -------------------------------------------------------------------------------- /src/AsseticBundle/Exception/DomainException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Exception/DomainException.php -------------------------------------------------------------------------------- /src/AsseticBundle/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/AsseticBundle/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/AsseticBundle/Factory/ConfigurationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Factory/ConfigurationFactory.php -------------------------------------------------------------------------------- /src/AsseticBundle/FilterManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/FilterManager.php -------------------------------------------------------------------------------- /src/AsseticBundle/FilterManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/FilterManagerFactory.php -------------------------------------------------------------------------------- /src/AsseticBundle/Listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Listener.php -------------------------------------------------------------------------------- /src/AsseticBundle/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/Service.php -------------------------------------------------------------------------------- /src/AsseticBundle/ServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/ServiceFactory.php -------------------------------------------------------------------------------- /src/AsseticBundle/View/AbstractStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/View/AbstractStrategy.php -------------------------------------------------------------------------------- /src/AsseticBundle/View/Helper/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/View/Helper/Asset.php -------------------------------------------------------------------------------- /src/AsseticBundle/View/NoneStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/View/NoneStrategy.php -------------------------------------------------------------------------------- /src/AsseticBundle/View/StrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/View/StrategyInterface.php -------------------------------------------------------------------------------- /src/AsseticBundle/View/ViewHelperStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/View/ViewHelperStrategy.php -------------------------------------------------------------------------------- /src/AsseticBundle/WriterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/src/AsseticBundle/WriterFactory.php -------------------------------------------------------------------------------- /tests/AsseticBundleTest/CacheBuster/LastModifiedStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/tests/AsseticBundleTest/CacheBuster/LastModifiedStrategyTest.php -------------------------------------------------------------------------------- /tests/AsseticBundleTest/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/tests/AsseticBundleTest/Configuration.php -------------------------------------------------------------------------------- /tests/AsseticBundleTest/FilterManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/tests/AsseticBundleTest/FilterManager.php -------------------------------------------------------------------------------- /tests/AsseticBundleTest/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/tests/AsseticBundleTest/Service.php -------------------------------------------------------------------------------- /tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/tests/Bootstrap.php -------------------------------------------------------------------------------- /tests/assets/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/tests/assets/css/global.css -------------------------------------------------------------------------------- /tests/assets/fonts/testfont.txt: -------------------------------------------------------------------------------- 1 | just for testing -------------------------------------------------------------------------------- /tests/assets/images/admon-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/tests/assets/images/admon-bug.png -------------------------------------------------------------------------------- /tests/assets/js/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/tests/assets/js/test.js -------------------------------------------------------------------------------- /tests/cache/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /tests/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /views/asseticexample/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widmogrod/zf2-assetic-module/HEAD/views/asseticexample/index.phtml --------------------------------------------------------------------------------