jQuery UI v1.10.3
// composer.json
{
"require": {
// ...
"bmatzner/jquery-ui-bundle": "*"
}
}
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Bmatzner\JQueryUIBundle\BmatznerJQueryUIBundle(),
// ...
);
}
$ php composer.phar update bmatzner/jquery-ui-bundle
Given your server's public directory is named "web", install the public vendor resources
$ php app/console assets:install web
Optionally, use the --symlink attribute to create links rather than copies of the resources
$ php app/console assets:install --symlink web
Load a jQuery UI theme, for instance one of the included default themes
<link rel="stylesheet" type="text/css" href="{{ asset('bundles/bmatznerjqueryui/css/smoothness/jquery-ui.css') }}" />
<link rel="stylesheet" type="text/css" href="{{ asset('bundles/bmatznerjqueryui/css/smoothness/jquery.ui.theme.css') }}" />
Load jQuery and jQuery UI
<script type="text/javascript" src="{{ asset('bundles/bmatznerjquery/js/jquery.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('bundles/bmatznerjqueryui/js/minified/jquery-ui.min.js') }}"></script>
Refer to the source code of the included files for license information
How can I help you explore Laravel packages today?