delocker/yii2-animate.css

AssetBundle for http://daneden.github.io/animate.css/

Installs: 3 018

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 2

Open Issues: 0

Type:yii2-extension

dev-master 2015-10-05 23:33 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:01:35 UTC


README

AssetBundle for http://daneden.github.io/animate.css/

Installation

####Composer

$ php composer.phar require delocker/yii2-animate.css "dev-master"

or add

"delocker/yii2-animate.css": "dev-master"

to the require section of your composer.json file.

Usage

in view (for example: @app/views/layouts/main.php)

// ...
use delocker\animate\AnimateAssetBundle;
// ...
AnimateAssetBundle::register($this);

or add to your assets/AppAsset.php

public $depends = [
    // ...
    '\delocker\animate\AnimateAssetBundle',
];