This repository has been archived by the owner on Jan 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·64 lines (64 loc) · 1.69 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
63
64
{
"name": "Lucas-C/tablut",
"type": "project",
"description": "Tablut BoardGameArena implementation",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Lucas Cimon",
"email": "none@nony.me"
},
{
"name": "Nicolas Tafforeau",
"email": "none@nony.me"
}
],
"autoload": {
"psr-4": {
"Tablut\\": "src/Tablut"
},
"files": [
"src/Tablut/Functional/filter_to_list.php",
"src/Tablut/Functional/group_to_lists.php",
"src/Tablut/Functional/partition_to_lists.php",
"src/Tablut/Functional/unique_list.php"
]
},
"bin": ["bin/tablut"],
"require": {
"php": ">=7.0.0",
"phpoption/phpoption": "1.5.0",
"lstrojny/functional-php": "1.6.0"
},
"require-dev": {
"php": ">=7.0.8",
"dholmes/bga-workbench": "dev-master",
"phpunit/phpunit": "^6.3.0",
"squizlabs/php_codesniffer": "^2.6.0 || ^3.0.2",
"wimg/php-compatibility": "*"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/danielholmes/bga-workbench"
}
],
"prefer-stable" : true,
"scripts": {
"post-install-cmd": [
"phpcs --config-set installed_paths vendor/wimg/php-compatibility"
],
"test": "phpunit tests",
"check-php": "phpcs --ignore=backup,dist,vendor,*\\.js,*\\.css --report=full,summary -q -s .",
"fix-php": "phpcbf --ignore=backup,dist,vendor,*\\.js,*\\.css --report=full,summary -q -s .",
"bgaw-clean": "bgawb -v clean",
"bgaw-build": "bgawb -v build",
"bgaw-validate": "bgawb -v validate",
"bgaw-deploy": "bgawb -v build --deploy",
"bgaw-watch": "bgawb -v build --watch --deploy"
},
"config": {
"process-timeout": 9000
}
}