Zepto.js Bundle for Symfony2
Current Version
Zepto.js v1.1.2, (*1)
Installation
Add bundle to your composer.json file
``` js
// composer.json, (*2)
{
"require": {
// ...
"bmatzner/zepto-bundle": "*"
}
}, (*3)
### Add bundle to your application kernel
``` php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Bmatzner\ZeptoBundle\BmatznerZeptoBundle(),
// ...
);
}
Download the bundle using Composer
``` bash
$ php composer.phar update bmatzner/zepto-bundle, (*4)
### Install assets
Given your server's public directory is named "web", install the public vendor resources
``` bash
$ php app/console assets:install web
Optionally, use the --symlink attribute to create links rather than copies of the resources, (*5)
``` bash
$ php app/console assets:install --symlink web, (*6)
## Usage
Refer to the desired files in your HTML template, e.g.
``` html
<script type="text/javascript" src="{{ asset('bundles/bmatznerzepto/js/zepto.min.js') }}"></script>
Licenses
Refer to the source code of the included files for license information, (*7)
References
- http://zeptojs.com
- http://symfony.com