├── CHANGELOG.md ├── LICENCE.md ├── README.md ├── composer.json ├── docs └── en │ ├── managers.md │ ├── usage-as-behavior.md │ └── usage-as-extend.md ├── migrations ├── m150122_115959_activerecordhistory_init.php └── m151013_131405_add_user_field.php └── src ├── ActiveRecordHistory.php ├── ActiveRecordHistoryBehavior.php └── managers ├── ActiveRecordHistoryInterface.php ├── BaseManager.php ├── DBManager.php ├── FileManager.php └── MongoDBManager.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/composer.json -------------------------------------------------------------------------------- /docs/en/managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/docs/en/managers.md -------------------------------------------------------------------------------- /docs/en/usage-as-behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/docs/en/usage-as-behavior.md -------------------------------------------------------------------------------- /docs/en/usage-as-extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/docs/en/usage-as-extend.md -------------------------------------------------------------------------------- /migrations/m150122_115959_activerecordhistory_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/migrations/m150122_115959_activerecordhistory_init.php -------------------------------------------------------------------------------- /migrations/m151013_131405_add_user_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/migrations/m151013_131405_add_user_field.php -------------------------------------------------------------------------------- /src/ActiveRecordHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/src/ActiveRecordHistory.php -------------------------------------------------------------------------------- /src/ActiveRecordHistoryBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/src/ActiveRecordHistoryBehavior.php -------------------------------------------------------------------------------- /src/managers/ActiveRecordHistoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/src/managers/ActiveRecordHistoryInterface.php -------------------------------------------------------------------------------- /src/managers/BaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/src/managers/BaseManager.php -------------------------------------------------------------------------------- /src/managers/DBManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/src/managers/DBManager.php -------------------------------------------------------------------------------- /src/managers/FileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/src/managers/FileManager.php -------------------------------------------------------------------------------- /src/managers/MongoDBManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhkey/yii2-activerecord-history/HEAD/src/managers/MongoDBManager.php --------------------------------------------------------------------------------