-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·39 lines (39 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
{
"name": "astronati/fantasy-football-calculator",
"description": "This library allows user to calculate the points/magic points that a team has reached after a soccer match. The total can be altered through some bonus like the defense one.",
"license": "MIT",
"version": "2.0.0",
"authors": [
{
"name": "Andrea Stronati",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpunit/php-code-coverage": "^9.2",
"phpstan/phpstan": "^0.12.77"
},
"require": {
"php": ">=7.4.0",
"astronati/fantasy-football-quotations-parser": "^3.0.0"
},
"autoload": {
"psr-4": {
"FFC\\": "src"
},
"classmap": [
"src/"
],
"exclude-from-classmap": [
"/tests/**/*.php"
]
},
"scripts": {
"analysis": "vendor/bin/phpstan analyse src --level=4",
"test": "./vendor/bin/phpunit tests",
"test:coverage": "XDEBUG_MODE=coverage composer test -- --coverage-html coverage/html --whitelist ./src"
}
}