forked from danielholmes/bga-workbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.46 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
{
"name": "micahstairs/bga-workbench",
"version": "0.2.1",
"type": "library",
"description": "BoardGameArena Workbench",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Daniel Holmes",
"email": "[email protected]"
},
{
"name": "Micah Stairs",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BGAWorkbench\\": "src/BGAWorkbench"
},
"files": [
"src/BGAWorkbench/Test/HamcrestMatchers/hasEntries.php",
"src/BGAWorkbench/Test/HamcrestMatchers/hasKeys.php"
]
},
"bin": [
"bin/bgawb"
],
"require": {
"php": ">=8.2.0",
"ext-mysqli": "*",
"ext-pdo_mysql": "*",
"lstrojny/functional-php": "^1.8.0",
"jasonlewis/resource-watcher": "1.2.0",
"symfony/console": "^3.3.8",
"symfony/config": "^3.3.8",
"symfony/process": "^3.3.8",
"symfony/finder": "^3.3.8",
"symfony/yaml": "^3.3.8",
"phpseclib/phpseclib": "^2.0.6",
"nette/reflection": "^2.4.2",
"classpreloader/classpreloader": "^4.2.0",
"fakerphp/faker": "^1.19",
"doctrine/dbal": "^2.5.12",
"phpoption/phpoption": "^1.5.0",
"hamcrest/hamcrest-php": "^2.0.0",
"squizlabs/php_codesniffer": "^3.0.0",
"illuminate/support": ">=4.0 < 6.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
},
"scripts": {
"test": "phpunit"
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}