-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 2.17 KB
/
composer.json
File metadata and controls
92 lines (92 loc) · 2.17 KB
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
{
"name": "brenoroosevelt/array-functions",
"description": "A set of helpful array/iterables functions",
"keywords": [
"array",
"iterable",
"iterable function",
"array function",
"dot notation",
"paginate array",
"paginate",
"some",
"none",
"at least",
"at most",
"exactly",
"contains",
"indexof",
"flatten",
"expand",
"helper",
"function"
],
"homepage": "https://github.com/brenoroosevelt/php-array-functions",
"license": "MIT",
"authors": [
{
"name": "Breno Roosevelt",
"email": "breno.roosevelt@gmail.com"
}
],
"require": {
"php": "^7.4|^8.0|^8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"squizlabs/php_codesniffer": "^3",
"phpstan/phpstan": "^1"
},
"autoload": {
"psr-4": {
"BrenoRoosevelt\\": "src/"
},
"files": [
"src/Accept.php",
"src/Add.php",
"src/All.php",
"src/AtLeast.php",
"src/AtMost.php",
"src/CallbackArgs.php",
"src/Contains.php",
"src/DotNotation.php",
"src/Exactly.php",
"src/Except.php",
"src/Expand.php",
"src/First.php",
"src/Flatten.php",
"src/Has.php",
"src/IndexOf.php",
"src/Map.php",
"src/None.php",
"src/Only.php",
"src/Paginate.php",
"src/Pipe.php",
"src/Pull.php",
"src/Reject.php",
"src/Remove.php",
"src/RemoveKey.php",
"src/Set.php",
"src/Some.php",
"src/Sum.php"
]
},
"autoload-dev": {
"psr-4": {
"BrenoRoosevelt\\Tests\\": "tests"
}
},
"scripts": {
"check": [
"phpunit tests",
"phpcs -p src tests",
"phpstan analyse src"
],
"test": [
"phpunit tests"
],
"cs-fix": [
"phpcbf src"
]
}
}