for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://dukt.net/social/
* @copyright Copyright (c) Dukt
* @license https://github.com/dukt/social/blob/v2/LICENSE.md
*/
namespace dukt\social\web\assets\social;
use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
* Asset bundle for Social
class SocialAsset extends AssetBundle
{
* @inheritdoc
public function init()
$this->sourcePath = __DIR__ . '/dist';
$this->depends = [
CpAsset::class,
];
$this->css = [
'social.css',
$this->js = [
'social.js',
parent::init();
}