for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace dominus77\sweetalert2\assets;
use yii\web\AssetBundle;
/**
* Class AnimateCssAsset
* @package dominus77\sweetalert2\assets
* @see https://github.com/daneden/animate.css
*/
class AnimateCssAsset extends AssetBundle
{
* @var string
public $sourcePath = '@vendor/daneden/animate.css';
* @var array
public $css = [];
* @inheritdoc
public function init()
$min = YII_ENV_DEV ? '' : '.min';
$this->css[] = 'animate' . $min . '.css';
}
public $depends = [
'yii\web\JqueryAsset',
];