-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
27 lines (27 loc) · 858 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "wowkaster/yii2-serialize-attributes",
"description": "This behavior allows you to treat model attributes as arrays, and they are automatically serialized for insertion and unserialized upon select, as long as you use the active record find methods.",
"keywords": ["yii2", "serialize"],
"type": "yii2-extension",
"homepage": "https://github.com/wowkaster/yii2-serialize-attributes",
"license": "MIT",
"authors": [
{
"name": "Vladikir Konchakovsky",
"email": "[email protected]",
"role": "Creator"
}
],
"support": {
"issues": "https://github.com/wowkaster/yii2-serialize-attributes/issues",
"source": "https://github.com/wowkaster/yii2-serialize-attributes"
},
"require": {
"yiisoft/yii2": "*"
},
"autoload": {
"psr-4": {
"wowkaster\\serializeAttributes\\": ""
}
}
}