-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.27 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
45
46
47
48
49
{
"name": "wojciech.nawalaniec/phlambda",
"description": "Functional library for PHP simillar to JS Rambda (https://github.com/ramda/ramda).",
"type": "library",
"license": "MIT",
"keywords": ["functional", "library"],
"homepage": "https://github.com/wnnawalaniec/phlambda",
"autoload": {
"psr-4": {
"Wojciech\\Phlambda\\": "src/"
},
"files": [
"src/array.php",
"src/curry.php",
"src/logic.php",
"src/math.php",
"src/predicates.php",
"src/string.php",
"src/constants.php",
"src/relation.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Wojciech\\Phlambda\\": "tests/",
"Tools\\Wojciech\\Phlambda\\": "tools/"
}
},
"authors": [
{
"name": "Wojciech Nawalaniec",
"email": "nawalaniec.wojciech@gmail.com"
}
],
"require": {
"php": "^8",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"infection/infection": "^0.25.5",
"nette/php-generator": "^3.6"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}