-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 850 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
{
"name": "slava-basko/functional-php",
"description": "Collection of php functions that allows you to write code in a declarative way.",
"authors": [
{
"name": "Slava Basko",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5|^7|^8"
},
"require-dev": {
"phpunit/phpunit": "^4|^5|^7|^8|^9",
"squizlabs/php_codesniffer": "3.*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Basko\\Functional\\": "src"
},
"files": [
"src/core.php",
"src/curry.php",
"src/list.php",
"src/math.php",
"src/partial.php",
"src/lens.php",
"src/helpers.php",
"src/string.php",
"src/polyfill.php",
"src/type.php",
"src/io.php"
]
},
"autoload-dev": {
"psr-4": {
"Basko\\FunctionalTest\\": "tests"
}
}
}