for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://github.com/flipboxfactory/craft-integration/blob/master/LICENSE
* @link https://github.com/flipboxfactory/craft-integration/
*/
namespace flipbox\craft\integration\web\assets\integrations;
use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
use flipbox\craft\ember\web\assets\actions\Actions;
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
class Integrations extends AssetBundle
{
* @inheritdoc
public function init()
$this->js = [
'js/Integrations' . $this->dotJs()
];
$this->css = [
'css/Integrations.css'
parent::init();
}
public $sourcePath = __DIR__ . '/dist';
public $depends = [
CpAsset::class,
Actions::class