-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
59 lines (59 loc) · 1.32 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
{
"name": "heroyt/tournament-generator",
"description": "A set of classes used to create multiple kinds of tournament brackets in PHP.",
"homepage": "https://github.com/Heroyt/tournament-generator",
"keywords": [
"generator",
"tournament",
"tournaments",
"scheduler",
"teams",
"bracket"
],
"support": {
"email": "vojik@wboy.cz",
"docs": "https://heroyt.github.io/tournament-generator/",
"wiki": "https://tournament-generator.readthedocs.io/en/latest/",
"source": "https://github.com/Heroyt/tournament-generator"
},
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tomáš Vojík",
"email": "vojik@wboy.cz",
"role": "lead"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.0.0"
},
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"ocramius/package-versions": true
}
},
"scripts": {
"docs": "php phpDocumentor.phar -s src/ -t docs/api/",
"doxygen": "doxygen",
"test": "./vendor/bin/phpunit",
"testMutation": "./vendor/bin/infection --threads=4"
},
"require": {
"php": ">=8.0"
},
"autoload": {
"psr-4": {
"TournamentGenerator\\": "src/TournamentGenerator/"
}
},
"require-dev": {
"infection/infection": "^0.26",
"phpunit/phpunit": "^9.6"
}
}