forked from Insolita/yii2-array-structure-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 958 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
38
39
40
41
42
43
44
45
{
"name": "insolita/yii2-array-structure-validator",
"description": "Validate array with complex structure",
"type": "library",
"keywords": [
"yii2",
"validator"
],
"require": {
"php": "^7.1|^8.0",
"yiisoft/yii2": "~2.0.15"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"cebe/indent": "*"
},
"autoload": {
"psr-4": {
"insolita\\ArrayStructureValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "insolita",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.1.3"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}