-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.67 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": "dhau/thebattleforhill",
"type": "project",
"description": "The Battle for Hill 218 - BoardGameArena implementation",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Daniel Holmes",
"email": "daniel@danielholmes.org"
}
],
"autoload": {
"psr-4": {
"TheBattleForHill218\\": "src/TheBattleForHill218"
},
"files": [
"src/TheBattleForHill218/Functional/filter_to_list.php",
"src/TheBattleForHill218/Functional/group_to_lists.php",
"src/TheBattleForHill218/Functional/partition_to_lists.php",
"src/TheBattleForHill218/Functional/unique_list.php"
]
},
"bin": ["bin/bfh"],
"require": {
"php": ">=7.0.0",
"ext-pdo_mysql": "*",
"phpoption/phpoption": "1.5.0",
"lstrojny/functional-php": "1.7.*"
},
"require-dev": {
"php": ">=7.0.8",
"ext-imagick": "*",
"dholmes/bga-workbench": "^0.1.2",
"phpunit/phpunit": "^6.3.0",
"squizlabs/php_codesniffer": "^3.0.0",
"intervention/image": "^2.4.0",
"ps/image-optimizer": "^1.1"
},
"scripts": {
"check-styles": "phpcs --standard=PSR2 --tab-width=4 --ignore=src/BGAWorkbench/Stubs,tests/bootstrap.php -q -p tests src",
"fix-styles": "phpcbf --standard=PSR2 --tab-width=4 --ignore=src/BGAWorkbench/Stubs,tests/bootstrap.php -q -p tests src",
"clean": "composer exec bgawb -v clean",
"build": "composer exec bgawb build",
"deploy": "composer exec bgawb -v build -- --deploy",
"watch": "composer exec bgawb -v build -- --deploy --watch",
"bga-validate": "composer exec bgawb -v validate",
"compile-images": "composer exec bfh -v compile-images",
"test": "phpunit"
}
}