forked from bkvfoundry/utility-belt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 896 Bytes
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 896 Bytes
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
{
"name": "rexlabs/utility-belt",
"description": "A set of helpful utilities for working with data, collections (arrays of arrays) and arrays in php",
"keywords":["collection","filter","array","dot read","nested read","dot syntax", "map recursive","utility","utilities"],
"autoload": {
"psr-4":{
"Rexlabs\\UtilityBelt\\":"src/"
}
},
"autoload-dev":{
"psr-4":{
"Rexlabs\\UtilityBelt\\Tests\\":"tests/"
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable",
"require":{
"php" : ">=7.4 <8.6"
},
"require-dev":{
"phpunit/phpunit": "^9"
},
"scripts":{
"coverage":"phpunit --coverage-html ./report",
"test":"phpunit",
"tests":"phpunit"
},
"license":"MIT",
"authors":[
{
"name": "Alex Babkov",
"email": "alex.babkov@rexsoftware.com.au",
"role": "Developer"
}
]
}