dmitry-kulikov/yii2-braintree

View on GitHub
src/BraintreeAsset.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * @author Anton Tuyakhov <atuyakhov@gmail.com>
 */

namespace tuyakhov\braintree;

use yii\web\AssetBundle;

class BraintreeAsset extends AssetBundle
{
    /**
     * {@inheritdoc}
     */
    public $sourcePath = '@npm/braintree-web/dist';

    /**
     * {@inheritdoc}
     */
    public $js = [
        'braintree.js',
    ];
}