├── .bowerrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── VideoJsAsset.php └── VideoJsWidget.php /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendor/bower" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbraganca/yii2-videojs-widget/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbraganca/yii2-videojs-widget/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbraganca/yii2-videojs-widget/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbraganca/yii2-videojs-widget/HEAD/composer.json -------------------------------------------------------------------------------- /src/VideoJsAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbraganca/yii2-videojs-widget/HEAD/src/VideoJsAsset.php -------------------------------------------------------------------------------- /src/VideoJsWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbraganca/yii2-videojs-widget/HEAD/src/VideoJsWidget.php --------------------------------------------------------------------------------