-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
38 lines (38 loc) · 1.12 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
{
"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",
"homepage": "https://ryanhs.github.io/chess.php/",
"keywords": [],
"license": "MIT",
"support": {
"issues": "https://github.com/ryanhs/chess.php/issues",
"source": "https://github.com/ryanhs/chess.php"
},
"authors": [
{
"name": "ryan hs",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1|^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"johnkary/phpunit-speedtrap": "^3.0",
"phpunit/phpunit": "^7|^8|^9",
"dms/phpunit-arraysubset-asserts": "^0.3.0"
},
"autoload": {
"psr-4": {
"Ryanhs\\Chess\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"optimize-autoloader": true
},
"prefer-stable": true
}