https://github.com/webuni/assetic-bundle
Extra feature for Assetic
https://github.com/webuni/assetic-bundle
Last synced: 5 months ago
JSON representation
Extra feature for Assetic
- Host: GitHub
- URL: https://github.com/webuni/assetic-bundle
- Owner: webuni
- License: mit
- Archived: true
- Created: 2014-08-05T07:27:53.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-03T12:47:23.000Z (over 11 years ago)
- Last Synced: 2024-03-27T06:56:01.682Z (about 2 years ago)
- Language: PHP
- Size: 172 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
WebuniAsseticBundle
===================
.. image:: https://travis-ci.org/webuni/assetic-bundle.png?branch=master
:alt: Build status
:target: https://travis-ci.org/webuni/assetic-bundle
Installation
------------
Edit your ``composer.json`` and add the following package as a **require**:
.. code-block:: json
{
"require": {
"webuni/assetic-bundle": "1.0@dev"
}
}
Edit your ``app/AppKernel.php`` and add the bundle to the **registerBundles** method:
.. code-block:: php
public function registerBundles()
{
$bundles = array(
// ...
new Webuni\AsseticBundle\WebuniAsseticBundle(),
// ...
)
}