-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 778 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 778 Bytes
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
{
"name": "stavarengo/php-tic-tac-toe",
"description": "Single player Tic Tac Toe game with a bot as the opponent. The boat uses Minimax algorithm to decides its moves.",
"type": "project",
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"TicTacToe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TicTacToe\\Test\\": "tests/"
}
},
"require": {
"php": "^7.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.1"
},
"scripts": {
"serve": "php -S 0.0.0.0:4000 -t public/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html ./test-coverage"
}
}