hscstudio/yii2-heart

Set of Yii2 extension

Installs: 330

Dependents: 0

Suggesters: 0

Security: 0

Stars: 20

Watchers: 10

Forks: 12

Open Issues: 2

Type:yii2-extension

dev-master 2015-11-26 07:28 UTC

This package is auto-updated.

Last update: 2024-03-25 20:17:09 UTC


README

Yii2-heart is extension for Yii Framework version 2.0. It is set of extension (widget, modules, wrapper, etc) to easiest developer in application development.

Roadmap

Done

$objPHPExcel = new \PHPExcel();
  • Wrap TCPDF (no wrap only use)
  • Wrap TinyButStrong
  • Database Migration
  • Import Excel ready
  • Gii Improved base on above extension
  • Highchart ready

Progress..

  • Update manual
  • Bugfix

Waiting

  • any idea?

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require hscstudio/yii2-heart "dev-master"

or add

"hscstudio/yii2-heart": "dev-master"

to the require section of your composer.json file.

Database migration

yii migrate --migrationPath=@hscstudio\heart\migrations

Usage

Once the extension is installed, simply modify your application configuration as follows:

return [
	'bootstrap' => [		
		'heart',
		...
	],
	'modules' => [
		'heart' => [
			'class' => 'hscstudio\heart\Module',
			'features'=>[
				// datecontrol (kartik), gridview (kartik), gii, 
				'datecontrol'=>true,// use false for not use it
				'gridview'=>true,// use false for not use it
				'gii'=>true, // use false for not use it
				// privilege (yii2-admin) please read guide
			],
		],
		...
	],
	...
];

And then please read Guide