schmasterz / yii-material-kit
Material Kit extension for Yii framework
Requires
- php: ^7.4|^8.0
- foxy/foxy: ^1.1@dev
- yiisoft/aliases: ^1.0
- yiisoft/arrays: ^3.0@dev
- yiisoft/assets: ^1.0@dev
- yiisoft/html: ^3.0@dev
- yiisoft/json: ^3.0@dev
- yiisoft/widget: ^3.0@dev
Requires (Dev)
- infection/infection: ^0.16.3
- phan/phan: ^3.0.2
- phpunit/phpunit: ^9.2.0
- yiisoft/composer-config-plugin: ^1.0@dev
- yiisoft/di: ^3.0@dev
This package is auto-updated.
Last update: 2025-03-18 21:57:34 UTC
README
This Yii Framework extension encapsulates Material Kit components and plugins in terms of Yii widgets, and thus makes using Bootstrap components/plugins in Yii applications extremely easy. Material Kit is a Free Bootstrap 4 UI Kit with a fresh, new design inspired by Google's material design.
Requirements
The minimum requirement by yii-material-kit that your Web server supports PHP 7.4.
Install via Composer
If you do not have Composer, you may install it by following the instructions at getcomposer.org.
Run
$ php composer.phar require schmasterz/yii-material-kit "master@dev"
Usage
<?= Schmasterz\Yii\MaterialKit\Progress::widget()->percent('60')->label('test'); ?>
You can also use yii-material-kit in the CSS, Javascript layer of your application. To achieve this, you need to include agGrid as a dependency of your Asset file
public $depends = [ 'Schmasterz\Yii\MaterialKit\Assets\MaterialAsset' ];
or add it to your view file
Schmasterz\Yii\MaterialKit\Assets\MaterialAsset::register($this);