rhosocial / yii2-base-models
The Base Models for Yii 2 Applications.
Installs: 399
Dependents: 10
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- php: >=7.3.10
- rhosocial/helpers: ~1.0.0
- yiisoft/yii2: >=2.0.43 < 2.1
Requires (Dev)
- codedungeon/phpunit-result-printer: ^0.31.0
- phpunit/phpunit: ^9.5.10
- yiisoft/yii2-faker: *
Suggests
- yiisoft/yii2-mongodb: Required if you want to use mongo ActiveRecord and ActiveQuery. (php-mongodb extension required)
- yiisoft/yii2-redis: Required if you want to use redis ActiveRecord and ActiveQuery.
This package is auto-updated.
Last update: 2024-11-04 05:14:26 UTC
README
The Base Models for Yii 2 Applications
Installation
The preferred way to install this extension is through composer. Either run
php composer.phar require --prefer-dist rhosocial/yii2-base-models "*"
or add
"rhosocial/yii2-base-models": "*"
to the require section of your composer.json
file.
If you want to use Redis or MongoDB ActiveRecord, please add
"yiisoft/yii2-redis": "*"
or
"yiisoft/yii2-mongodb": "~2.1.0"
to the require section of your composer.json
file by yourself.
Note: The MongoDB models need PHP MongoDB extension 1.2.0 or above.
Usage
Once the extension is installed, simply use it in your code by :
use rhosocial\base\models\models\BaseEntityModel; class Example extends BaseEntityModel { ... }
further detailed usage seen in code file notes.
Contact Us
If you have any problems or good ideas about yii2-base-models, please discuss there, or send an email to i@vistart.me. Thank you!
If you want to send an email with your issues, please briefly introduce yourself first, for instance including your title and github homepage.