-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·62 lines (62 loc) · 1.3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "kilbiller/fphp",
"description": "A set of auto-curried immutable data-last functions for PHP. Inspired by lodash/fp.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rémy Peru",
"email": "peru.remy@gmail.com"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"kahlan/kahlan": "^3.1",
"squizlabs/php_codesniffer": "^3.0",
"consistence/coding-standard": "^2.1"
},
"autoload": {
"psr-4": {"fphp\\": "src/"},
"files": [
"src/utils/reflexify.php",
"src/compose.php",
"src/concat.php",
"src/curry.php",
"src/curry1.php",
"src/curry2.php",
"src/curry3.php",
"src/curryN.php",
"src/every.php",
"src/filter.php",
"src/find.php",
"src/first.php",
"src/flatMap.php",
"src/flatten.php",
"src/flip.php",
"src/flow.php",
"src/identity.php",
"src/includes.php",
"src/join.php",
"src/last.php",
"src/map.php",
"src/negate.php",
"src/none.php",
"src/not.php",
"src/prop.php",
"src/reduce.php",
"src/reject.php",
"src/reverse.php",
"src/some.php",
"src/uniq.php",
"src/uniqWith.php",
"src/zip.php"
]
},
"scripts": {
"lint": "phpcs -sp src tests",
"test": "kahlan",
"test:coverage": "kahlan --coverage=4 --clover=clover.xml"
}
}