-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
46 lines (46 loc) · 1.21 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
{
"name": "krak/fn",
"description": "Functional library for php with proper currying",
"type": "library",
"license": "MIT",
"keywords": [
"functional",
"php",
"curry",
"partial-application"
],
"authors": [
{
"name": "RJ Garcia",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Krak\\Fun\\": "src"
},
"files": ["src/fn.php", "src/curried.generated.php", "src/consts.generated.php", "src/consts.ns.generated.php", "src/c.generated.php", "src/f.generated.php", "src/generate.php"]
},
"require-dev": {
"krak/peridocs": "dev-master",
"lavoiesl/php-benchmark": "^1.4",
"nikic/php-parser": "^4.0",
"peridot-php/leo": "^1.6",
"peridot-php/peridot": "^1.19",
"symfony/polyfill-php81": "^1.27",
"symfony/var-dumper": "^4.0"
},
"suggest": {
"symfony/polyfill-php81": "To use arrayWrap in PHP 7"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "peridot test"
}
}