-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
124 lines (124 loc) · 4.05 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "grrr-amsterdam/garp-functional",
"description": "Utility library embracing functional programming paradigms.",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^7.0 | ^9.5",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.10"
},
"license": "BSD-3-Clause",
"authors": [
{
"name": "Harmen Janssen",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0"
},
"scripts": {
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml --extensions=php --colors --ignore=vendor .",
"static-analysis": "vendor/bin/phpstan",
"test": "vendor/bin/phpunit tests/"
},
"autoload": {
"psr-4": {
"Garp\\Functional\\Internal\\": "_internal/",
"Garp\\Functional\\Types\\": "types/"
},
"files": [
"functions/add.php",
"functions/always.php",
"functions/autocurry.php",
"functions/binary.php",
"functions/both.php",
"functions/call.php",
"functions/compose.php",
"functions/concat.php",
"functions/concat_right.php",
"functions/concat_with.php",
"functions/contains.php",
"functions/count.php",
"functions/divide.php",
"functions/drop.php",
"functions/drop_while.php",
"functions/either.php",
"functions/entries.php",
"functions/equals.php",
"functions/every.php",
"functions/filter.php",
"functions/find.php",
"functions/find_index.php",
"functions/flatten.php",
"functions/flip.php",
"functions/fold.php",
"functions/group_by.php",
"functions/gt.php",
"functions/gte.php",
"functions/head.php",
"functions/id.php",
"functions/index_by.php",
"functions/instance.php",
"functions/is_assoc.php",
"functions/is_callable_function.php",
"functions/is_reduced.php",
"functions/join.php",
"functions/keys.php",
"functions/keys_where.php",
"functions/last.php",
"functions/lt.php",
"functions/lte.php",
"functions/map.php",
"functions/match_regex.php",
"functions/merge_at.php",
"functions/merge_after.php",
"functions/modulo.php",
"functions/multiply.php",
"functions/none.php",
"functions/not.php",
"functions/omit.php",
"functions/once.php",
"functions/partial.php",
"functions/partial_right.php",
"functions/pick.php",
"functions/pipe.php",
"functions/prop.php",
"functions/prop_equals.php",
"functions/prop_in.php",
"functions/prop_of.php",
"functions/prop_set.php",
"functions/publish.php",
"functions/reduce.php",
"functions/reduce_assoc.php",
"functions/reduced.php",
"functions/reindex.php",
"functions/reject.php",
"functions/rename_keys.php",
"functions/repeat.php",
"functions/replace.php",
"functions/some.php",
"functions/sort.php",
"functions/sort_by.php",
"functions/sort_by_map.php",
"functions/split.php",
"functions/subtract.php",
"functions/tail.php",
"functions/take.php",
"functions/take_while.php",
"functions/tap.php",
"functions/truthy.php",
"functions/unary.php",
"functions/unique.php",
"functions/usort.php",
"functions/when.php",
"functions/y.php",
"functions/zip.php"
]
},
"autoload-dev": {
"psr-4": {
"Garp\\Functional\\Tests\\": "tests/"
}
}
}