forked from martinvenus/Knapsack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.15 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
{
"name": "wondernetwork/php-collection-library",
"license": "MIT",
"type": "library",
"description": "Collection library for PHP",
"keywords": ["collections","sequences", "map", "reduce"],
"homepage": "https://github.com/WonderNetwork/php-collection-library",
"authors": [
{
"name": "Dusan Kasan",
"email": "[email protected]",
"homepage": "http://kasan.sk",
"role": "Developer"
},
{
"name": "Martin Venuš",
"homepage": "https://github.com/martinvenus"
},
{
"name": "Maciej Łebkowski",
"homepage": "https://github.com/mlebkowski"
}
],
"require-dev": {
"ext-dom": "*",
"squizlabs/php_codesniffer": "^3.4",
"phpmd/phpmd" : "^2.0",
"phpspec/phpspec": "^7",
"phpunit/phpunit": "^10.5"
},
"require": {
"php": ">=8.3"
},
"replace": {
"dusank/knapsack": "self.version"
},
"autoload": {
"files": [
"src/collection_functions.php",
"src/utility_functions.php"
],
"psr-4": {
"DusanKasan\\Knapsack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DusanKasan\\Knapsack\\Tests\\Helpers\\": "tests/helpers/"
}
}
}