-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.03 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
{
"name": "mgrechanik/kruskal",
"description": "The implementation of the Kruskal algorithm to find a minimum spanning tree",
"type": "library",
"keywords": ["Kruskal algorithm", "Minimum spanning tree", "Kruskal", "minimum weight spanning tree", "Search algorithm",
"path planning", "graph", "Minimum-cost subgraph", "mst", "php"],
"license": "BSD-3-Clause",
"autoload": {
"psr-4": {
"mgrechanik\\kruskal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"mgrechanik\\kruskal\\tests\\": "tests/"
}
},
"authors": [
{
"name": "Mikhail Grechanik",
"email": "mike.grechanik@gmail.com"
}
],
"support": {
"issues": "https://github.com/mgrechanik/kruskal/issues?state=open",
"source": "https://github.com/mgrechanik/kruskal"
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "10",
"yoast/phpunit-polyfills": "^2.0"
}
}