-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
51 lines (51 loc) · 1.29 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
{
"name": "dholmes/bga-workbench",
"version": "0.2.1",
"type": "library",
"description": "BoardGameArena Workbench",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Daniel Holmes",
"email": "daniel@danielholmes.org"
}
],
"autoload": {
"psr-4": {
"BGAWorkbench\\": "src/BGAWorkbench"
},
"files": [
"src/BGAWorkbench/Test/HamcrestMatchers/hasEntries.php",
"src/BGAWorkbench/Test/HamcrestMatchers/hasKeys.php"
]
},
"bin": ["bin/bgawb"],
"require": {
"php": ">=7.2.0",
"ext-mysqli": "*",
"ext-pdo_mysql": "*",
"lstrojny/functional-php": ">=1.6.0 <1.8.0",
"classpreloader/classpreloader": "^3.1.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",
"fzaninotto/faker": "^1.7.1",
"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": "^6.2.3"
},
"scripts": {
"test": "phpunit"
}
}