-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
50 lines (50 loc) · 1.48 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
{
"name": "markbaker/quadtrees",
"type": "library",
"description": "QuadTree implementation in PHP",
"keywords": ["quadtree", "datastructure", "geospatial", "gis", "index"],
"homepage": "https://github.com/MarkBaker/QuadTrees",
"license": "MIT",
"authors": [
{
"name": "Mark Baker",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.3.2",
"phpmd/phpmd": "2.6.0",
"phpunit/phpunit": "^5.4.0",
"phpdocumentor/phpdocumentor":"2.*",
"sebastian/phpcpd": "2.*",
"phploc/phploc": "2.*",
"phpcompatibility/php-compatibility": "^8.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3"
},
"autoload": {
"psr-4": {
"QuadTrees\\": "classes/src/"
}
},
"scripts": {
"style": [
"phpcs --report-width=200 --report-summary --report-full classes/src/ --standard=PSR2 -n"
],
"mess": [
"phpmd classes/src/ xml codesize,unusedcode,design,naming -n"
],
"lines": [
"phploc classes/src/ -n"
],
"cpd": [
"phpcpd classes/src/ -n"
],
"versions": [
"phpcs --report-width=200 --report-summary --report-full classes/src/ --standard=PHPCompatibility --runtime-set testVersion 7.0- -n"
]
},
"minimum-stability": "dev"
}