Download the PHP package buildinteractivebusiness/yii2-components without Composer
On this page you can find all versions of the php package buildinteractivebusiness/yii2-components. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download buildinteractivebusiness/yii2-components
More information about buildinteractivebusiness/yii2-components
Files in buildinteractivebusiness/yii2-components
Download buildinteractivebusiness/yii2-components
More information about buildinteractivebusiness/yii2-components
Files in buildinteractivebusiness/yii2-components
Vendor buildinteractivebusiness
Package yii2-components
Short Description The additional components for the Yii framework
License BSD-3-Clause
Package yii2-components
Short Description The additional components for the Yii framework
License BSD-3-Clause
Please rate this library. Is it a good library?
Informations about the package yii2-components
Additional component Module
The additional components for Yii2 framework.
The main purpose of this module to provide the ability to wrap common function from PHP and Yii2 framework.
Installation
For the installation of modules Composer is required
Configuration
After adding to your composer json you have to create your migration and update migration file to:
use robot72\components\helpers\MigrationHelper;
class m000000_092100_our_migration extends MigrationHelper
{
public $tableName = '{{%lead_generate}}';
public function up()
{
$this->setTableOptions();
$this->createTable($this->tableName, [
'id' => $this->primaryKey(),
'type' => $this->integer(11),
'data' => $this->text(),
'create_at' => $this->timestamp()->notNull(),
], $this->tableOptions);
}
public function down()
{
$this->dropTable($this->tableName);
}
}
All versions of yii2-components with dependencies
PHP Build Version
Package Version
Requires
yiisoft/yii2 Version
*
The package buildinteractivebusiness/yii2-components contains the following files
Loading the files please wait ....