-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 923 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 923 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
{
"name": "jord-jd/array_undot",
"description": "array_undot (the opposite of the array_dot helper function) expands a dot notation array into a full multi-dimensional array.",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0",
"php-coveralls/php-coveralls": "^2.1"
},
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Jordan Hall",
"email": "jordan@hall05.co.uk"
}
],
"autoload":{
"files": [
"src/array_undot.php"
],
"psr-4": {
"JordJD\\ArrayUndot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JordJD\\ArrayUndot\\Tests\\": "tests/Unit/"
}
},
"replace": {
"divineomega/array_undot": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
}
}