-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.09 KB
/
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
{
"name": "pflorek/elevator",
"description": "Flattens a multi-dimensional array or any \\Traversable into a one-dimensional array. Elevates an one-dimensional or any \\Traversable to a multi-dimensional array.",
"type": "library",
"keywords": [
"flatten",
"array",
"map",
"materialized path",
"serialize",
"tree"
],
"time": "2017-03-17",
"license": "MIT",
"authors": [
{
"name": "Patrick Florek",
"email": "patrick.florek@gmail.com",
"homepage": "http://www.patrickflorek.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.4",
"symfony/polyfill-php71": "^1"
},
"require-dev": {
"phpunit/phpunit": ">=4.8.36 <8.0"
},
"autoload": {
"psr-4": {
"PFlorek\\Elevator\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"PFlorek\\Elevator\\Tests\\": "tests/"
}
}
}