Adding OwlCarousel to your Yii2 project via Composer
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist sersid/yii2-owl-carousel-asset "*"
or add
"sersid/yii2-owl-carousel-asset": "*"
to the require section of your composer.json
file.
The following example is if you wish to register the bundle on a specific view
// this code is written on that specific view
sersid\owlcarousel\Asset::register($this);
But it could be that you wish to use it as part of another asset bundle or globally registered on your application. For the following example, we going to registered as part of the main application asset bundle AppAsset:
class AppAsset extends AssetBundle
{
public $depends = [
...
'sersid\owlcarousel\Asset'
];
}
No stable releases.
Comments