-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1006 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
35
36
37
{
"name": "gordonlesti/longest-common-subsequence",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Gordon Lesti",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0"
},
"autoload": {
"psr-4": {
"GordonLesti\\LongestCommonSubsequence\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GordonLesti\\LongestCommonSubsequenceTest\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"phpmd/phpmd": "^2.7",
"sebastian/phpcpd": "^3.0",
"squizlabs/php_codesniffer": "^3.5",
"satooshi/php-coveralls": "^2.1"
},
"scripts": {
"test": "php vendor/bin/phpunit",
"phpcs": "php vendor/bin/phpcs",
"phpmd": "php vendor/bin/phpmd src/,tests/ text cleancode,codesize,controversial,design,naming,unusedcode",
"phpcpd": "php vendor/bin/phpcpd src/ tests/"
}
}