Silex Version ServiceProvider
, (*1)
ServiceProvider for Silex which enables Assetic. If Twig is enabled, it enables Twig syntax to
include assets. If in debug mode, assets are dumped automatically on each request., (*2)
When using production mode, you can dump all assets by using the assetic:dump
command., (*3)
Installation
$ composer require frostiede/silex-assetic-serviceprovider
Afterwards, register the ServiceProvider:, (*4)
$app->register(new AsseticServiceProvider(), [
'assetic.options' => [
'assets_path' => '', // Path to your assets directory (e.g. /app/assets/)
'web_path' => '' // Path to your web-directory (e.g. /web/)
]
]);
Contribution
Any help is welcomed. Feel free to create issues and merge requests :-), (*5)
License
MIT License, (*6)
This project was inspired by mheap/Silex-Assetic., (*7)