-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
41 lines (41 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
{
"name": "markbaker/tries",
"type": "library",
"description": "PHP Classes for Trie datastructures",
"keywords": ["trie", "radix", "patricia", "suffix", "datastructure"],
"homepage": "https://github.com/MarkBaker/Tries",
"license": "MIT",
"authors": [
{
"name": "Mark Baker",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4@dev",
"squizlabs/php_codesniffer": "^3.0@dev",
"phpmd/phpmd": "dev-master",
"sebastian/phpcpd": "^4.1",
"phploc/phploc": "^5.0@dev",
"phpcompatibility/php-compatibility": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "dev-master"
},
"autoload": {
"psr-4": {
"Tries\\": "classes/src/"
}
},
"scripts": {
"style": "phpcs --report-width=200 --report-summary --report-full classes/src/ --standard=PSR2 -n",
"test": "phpunit -c phpunit.xml.dist",
"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",
"coverage": "phpunit -c phpunit.xml.dist --coverage-text --coverage-html ./build/coverage"
},
"minimum-stability": "dev"
}