-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 859 Bytes
/
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
{
"name": "lindelius/php-fide",
"description": "A zero-dependency PHP implementation of the FIDE Rating System.",
"keywords": ["chess", "elo", "fide", "rating"],
"homepage": "https://github.com/lindelius/php-fide",
"license": "Apache-2.0",
"authors": [
{
"name": "Tom Lindelius",
"role": "Developer"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpbench/phpbench": "^1.3",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Lindelius\\FIDE\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lindelius\\FIDE\\Benchmarks\\": "benchmarks/",
"Lindelius\\FIDE\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testsuite Unit"
}
}