-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.68 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
{
"name": "kariricode/data-structure",
"description": "The KaririCode DataStructure component offers advanced PHP data structures, including lists, stacks, queues, maps, and sets. It features efficient, strongly-typed, object-oriented implementations like ArrayList, LinkedList, BinaryHeap, and TreeMap.",
"keywords": [
"data structures",
"php",
"collections",
"arraylist",
"linkedlist",
"stack",
"queue",
"heap",
"treemap",
"set",
"binary heap",
"red-black tree",
"dynamic array",
"kariricode",
"oop",
"strong typing",
"algorithms"
],
"homepage": "https://kariricode.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Walmir Silva",
"email": "walmir.silva@kariricode.org"
}
],
"autoload": {
"psr-4": {
"KaririCode\\DataStructure\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KaririCode\\DataStructure\\Tests\\": "tests"
}
},
"require": {
"php": "^8.3",
"kariricode/contract": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.58",
"nunomaduro/phpinsights": "^2.11",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.10",
"mockery/mockery": "^1.6",
"enlightn/security-checker": "^2.0"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"support": {
"issues": "https://github.com/KaririCode-Framework/kariricode-data-structure/issues",
"source": "https://github.com/KaririCode-Framework/kariricode-data-structure"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable"
}