foreverglory / assets-bundle
Symfony AssetsBundle
Package info
github.com/foreverglory/assets-bundle
Type:symfony-bundle
pkg:composer/foreverglory/assets-bundle
v0.2.0
2016-03-19 10:12 UTC
Requires
- symfony/symfony: ~2.3
This package is not auto-updated.
Last update: 2026-03-09 13:44:32 UTC
README
Symfony Framework extend of assets
Symfony 框架关于Assets的扩展
Introduction
Composer
Add to composer.json in your project to require section:
{
"foreverglory/assets-bundle": "~0.1"
}
Add this bundle to your application's kernel
//app/AppKernel.php public function registerBundles() { return array( // ... new Glory\Bundle\AssetsBundle\GloryAssetsBundle(), // ... ); }
Configure service in your YAML configuration
#app/config/config.yml framework: # ... templating: engines: ['twig'] assets_version: 1.0.0 assets_version_format: %%s?v=%%s packages: image: base_urls: ["http://cdn.domain.com"] ico: version_format: %%s # ... glory_assets: packages: image: #Connection framework.templating.packages.{image} match: "/\.(jpg|png)$/" #php code preg_match($match, $path), if match, use framework.templating.packages.{image} ico: match: "/favicon\.ico$/"