-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
96 lines (96 loc) · 2.43 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
{
"name": "sergiors/prelude",
"description": "Functional library",
"keywords": ["functional-programming", "monad"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sérgio Rafael Siqueira",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phing/phing": "^2.14",
"pdepend/pdepend": "^2.2",
"phpmd/phpmd": "^2.4",
"squizlabs/php_codesniffer": "^2.6",
"sebastian/phpcpd": "^2.0",
"phploc/phploc": "^3.0",
"phpbench/phpbench": "@dev"
},
"autoload": {
"psr-4": {
"Prelude\\": "src"
},
"files": [
"src/consts.php",
"src/all.php",
"src/allPass.php",
"src/always.php",
"src/any.php",
"src/anyPass.php",
"src/append.php",
"src/contains.php",
"src/compose.php",
"src/cond.php",
"src/divide.php",
"src/drop.php",
"src/equals.php",
"src/filter.php",
"src/find.php",
"src/flatten.php",
"src/gt.php",
"src/gte.php",
"src/has.php",
"src/head.php",
"src/id.php",
"src/ifElse.php",
"src/isEmpty.php",
"src/indexOf.php",
"src/init.php",
"src/join.php",
"src/last.php",
"src/lt.php",
"src/lte.php",
"src/map.php",
"src/memoize.php",
"src/merge.php",
"src/multiply.php",
"src/none.php",
"src/not.php",
"src/partial.php",
"src/pipe.php",
"src/prepend.php",
"src/prop.php",
"src/props.php",
"src/reduce.php",
"src/replace.php",
"src/slice.php",
"src/split.php",
"src/tail.php",
"src/take.php",
"src/toString.php",
"src/typeof.php",
"src/unless.php",
"src/when.php"
]
},
"autoload-dev": {
"psr-4": {
"Prelude\\Tests\\": "tests"
}
},
"scripts": {
"tests": [
"@php vendor/bin/phpunit"
],
"qa": [
"@php vendor/bin/phing qa"
]
}
}