-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 961 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
{
"name": "eluhr/yii2-json-attribute-behavior",
"description": "This behavior automatically decodes attributes from JSON to arrays before validation, handling errors and re-encoding if validation fails.",
"type": "yii2-extension",
"keywords": ["yii2","extension","json","behavior"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Elias Luhr",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "~2.0.0",
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"eluhr\\jsonAttributeBehavior\\": "src"
}
},
"repositories": {
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}