-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 766 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 766 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
{
"name": "sicet7/easyarray",
"type": "library",
"description": "A array wrapper class that makes if easier to use arrays and makes is fully serializable even with closures in the array.",
"minimum-stability": "stable",
"license": "MIT",
"version": "1.0.1",
"authors": [
{
"name": "Martin René Sørensen",
"email": "sicet7@hotmail.com"
}
],
"require": {
"zumba/json-serializer": "^2.1",
"jeremeamia/superclosure": "^2.3",
"php": ">=7.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"sicet7/debug": "^1.0"
},
"autoload":{
"psr-4":{
"Sicet7\\EasyArray\\": "src/"
}
},
"autoload-dev":{
"psr-4":{
"Sicet7\\Tests\\EasyArray\\": "tests/"
}
}
}