-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
50 lines (50 loc) · 1.23 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
{
"name": "seboettg/collection",
"description": "Collection is a set of useful PHP wrapper classes for arrays, similar to Java Collection. Contains ArrayList, Stack, Queue.",
"license": "MIT",
"keywords": [
"arraylist",
"sort",
"collections",
"comparable",
"array",
"oop",
"datastructures",
"basic-data-structures",
"stack",
"queue",
"comparator",
"filter",
"map",
"comparable-interface"
],
"authors": [
{
"name": "Sebastian Böttger",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"Seboettg\\Collection\\": "src/"},
"files": [
"src/Assert/Functions.php",
"src/Lists/Functions.php",
"src/Map/Functions.php",
"src/Common/Functions.php"
]
},
"autoload-dev": {
"psr-4": {"Seboettg\\Collection\\Test\\": "tests/"}
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "8.5.*",
"php-coveralls/php-coveralls": "^1",
"ext-json": "*"
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.xml"
}
}