-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 858 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": "f1r3starter/kdtree",
"type": "library",
"description": "Yet another K-d tree implementation",
"license": "MIT",
"authors": [
{
"name": "Andrii Filenko",
"email": "andrey.filenochko@gmail.com"
}
],
"require": {
"php": ">=7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"phpstan/phpstan": "^0.12.9",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "^3.8.5"
},
"autoload": {
"psr-4": {
"KDTree\\": "src"
}
},
"scripts": {
"psalm": "vendor/bin/psalm --config=psalm.xml",
"phpstan": "vendor/bin/phpstan analyse src --level 7",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml",
"phpcs": "vendor/bin/phpcs --standard=PSR12 ./src",
"phpcbf": "vendor/bin/phpcbf ./src"
}
}