-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.37 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
{
"name": "lsv/balldontlie",
"description": "Wrapper for [BallDontLie](https://www.balldontlie.io/home.html) API",
"license": "MIT",
"autoload": {
"psr-4": {
"Lsv\\BallDontLie\\": "src"
}
},
"require": {
"symfony/options-resolver": "^6",
"symfony/serializer": "^6",
"symfony/property-info": "^6",
"symfony/property-access": "^6",
"phpdocumentor/reflection-docblock": "^5.3",
"symfony/http-client": "^6.3"
},
"autoload-dev": {
"psr-4": {
"Lsv\\BallDontLieTest\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"infection/infection": "^0.27.0",
"rregeer/phpunit-coverage-check": "^0.3.1",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.22"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"fix": [
"PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix",
"phpstan",
"XDEBUG_MODE=coverage phpunit",
"coverage-check .build/coverage/clover.xml 100 --only-percentage",
"infection --skip-initial-tests --threads=32 --coverage=.build/coverage"
]
}
}