forked from marcj/topsort.php
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.32 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.32 KB
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
{
"name": "vaimo/topological-sort",
"type": "library",
"description": "High-Performance TopSort/Dependency resolving algorithm (compatibility version to work with 7.0 - 7.2)",
"keywords": [
"topological sort",
"topsort",
"dependency resolving"
],
"license": "MIT",
"authors": [
{
"name": "Marc J. Schmidt",
"email": "marc@marcjschmidt.de"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0 || ~7.0 || ~8.0 || ~9.0",
"symfony/console": "~3.0 || ~4.0 || ~5.0",
"squizlabs/php_codesniffer": "^2.9.2 || ^3.13",
"phpcompatibility/php-compatibility": "^9"
},
"scripts-descriptions": {
"test": "Run tests",
"code:analyse": "Run static code analysis for the source code",
"code:normalise": "Apply automatic fixes to the code based on the static code analysis (where applicable)"
},
"scripts": {
"test": "vendor/bin/phpunit",
"code:analyse": "bin/analyse",
"code:normalise": "bin/normalise",
"post-install-cmd": "bin/bootstrap",
"post-update-cmd" : "bin/bootstrap"
},
"autoload": {
"psr-4": {
"Vaimo\\TopSort\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vaimo\\TopSort\\Tests\\": "tests/Tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}