-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 964 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
28
29
30
31
32
33
34
35
36
37
{
"name": "laxity7/yii2-json-field",
"description": "Behavior that convert array to JSON before save data in model, and also convert JSON to an array after saving and retrieving data",
"license": "MIT",
"homepage": "https://github.com/laxity7/yii2-json-field",
"keywords": [
"yii2",
"behaviors",
"json"
],
"authors": [
{
"name": "Vlad Varlamov",
"email": "[email protected]",
"homepage": "https://varlamov.dev"
}
],
"autoload": {
"psr-4": {
"laxity7\\yii2\\behaviors\\": ""
}
},
"require": {
"php": "^7.4||^8.0",
"yiisoft/yii2": "2.0.*",
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}