forked from ryanhs/chess.php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 738 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 738 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
{
"name": "ryanhs/chess.php",
"description": "chess.php is a PHP chess library that is used for chess move generation/validation, piece placement/movement, and check/checkmate/stalemate detection - basically everything but the AI. NOTE: this is a port of chess.js for php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "ryan hs",
"email": "mr.ryansilalahi@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
},
"require-dev": {
"phpunit/phpunit": "^5.3",
"johnkary/phpunit-speedtrap": "^1.0"
},
"autoload": {
"psr-4": {
"Ryanhs\\Chess\\": "src/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
}
}