-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.27 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
{
"name": "mgrechanik/ant-colony-optimization",
"description": "The implementation of the Ant colony optimization algorithm",
"type": "library",
"keywords": ["Ant colony optimization", "Travelling salesman problem", "Shortest path problem", "aco", "tsp",
"Asymmetric travelling salesman problem", "Symmetric travelling salesman problem", "Constrained Shortest Path First",
"Optimization method", "Optimization algorithm", "Search algorithm", "Artificial ants", "model-based search",
"shortest paths", "path planning", "graph", "php"],
"license": "BSD-3-Clause",
"autoload": {
"psr-4": {
"mgrechanik\\aco\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"mgrechanik\\aco\\tests\\": "tests/"
}
},
"authors": [
{
"name": "Mikhail Grechanik",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/mgrechanik/ant-colony-optimization/issues?state=open",
"source": "https://github.com/mgrechanik/ant-colony-optimization"
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "10",
"yoast/phpunit-polyfills": "^2.0"
}
}