forked from chesslablab/php-chess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.05 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
{
"name": "chesslablab/php-chess",
"description": "A chess library for PHP.",
"type": "library",
"license": "MIT",
"keywords": [
"chess",
"library",
"pgn",
"parser",
"validator",
"validate",
"game",
"engine",
"api",
"requests",
"position",
"board",
"editor"
],
"authors": [
{
"name": "Jordi Bassagaña",
"email": "[email protected]",
"homepage": "https://github.com/chesslablab"
}
],
"require": {
"php": ">=8.1",
"rubix/ml": "^2.4",
"imagine/imagine": "^1.2",
"myclabs/deep-copy": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {
"Chess\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Chess\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyse -c phpstan.neon.dist"
],
"phpstan-baseline": [
"vendor/bin/phpstan analyse -c phpstan.neon.dist --generate-baseline"
]
}
}