-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
74 lines (74 loc) · 1.89 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
{
"name": "sergiors/functional",
"description": "Functional Programming for PHP no loop behind",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sérgio Rafael Siqueira",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"pdepend/pdepend": "~2.0",
"phing/phing": "~2.10",
"phploc/phploc": "~2.1",
"phpmd/phpmd": "~2.2",
"sebastian/phpcpd": "~2.0",
"squizlabs/php_codesniffer": "~2.1"
},
"autoload": {
"psr-4": {
"Sergiors\\Functional\\": "src"
},
"files": [
"src/_.php",
"src/allpass.php",
"src/always.php",
"src/append.php",
"src/compose.php",
"src/concat.php",
"src/deleteat.php",
"src/diff.php",
"src/drop.php",
"src/dropwhile.php",
"src/each.php",
"src/equals.php",
"src/filter.php",
"src/find.php",
"src/flatten.php",
"src/getIn.php",
"src/get.php",
"src/gt.php",
"src/gte.php",
"src/has.php",
"src/head.php",
"src/hold.php",
"src/id.php",
"src/ifElse.php",
"src/last.php",
"src/lt.php",
"src/lte.php",
"src/map.php",
"src/not.php",
"src/partial.php",
"src/pipe.php",
"src/prepend.php",
"src/prop.php",
"src/reduce.php",
"src/sort.php",
"src/tail.php",
"src/take.php",
"src/takewhile.php"
]
},
"autoload-dev": {
"psr-4": {
"Sergiors\\Functional\\Tests\\": "tests"
}
}
}