-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.51 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
51
52
53
54
55
56
{
"name": "triun/longest-common-substring",
"version": "1.0.0",
"description": "PHP implementation of an algorithm to solve the `longest common substring` problem.",
"license": "MIT",
"type": "library",
"homepage": "https://github.com/Triun",
"support": {
"issues": "https://github.com/Triun/PHP-Longest-Common-Substring/issues",
"source": "https://github.com/Triun/PHP-Longest-Common-Substring"
},
"keywords": [],
"authors": [
{
"name": "Gonzalo Moreno",
"homepage": "https://github.com/gonzalom"
}
],
"archive": {
"exclude": [
"/.git",
"/.gitattributes",
"/.travis.*",
"/.archer.*",
"/test",
"/build",
"/*.md",
"/LICENCE",
"/phpcs.xml",
"/phpunit.xml"
]
},
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.2",
"symfony/var-dumper": "^3.4"
},
"autoload": {
"psr-4": {
"Triun\\LongestCommonSubstring\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"test/suite"
]
},
"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml",
"test-ci": "vendor/bin/phpunit --configuration phpunit.xml --coverage-clover build/coverage.xml",
"standards": "vendor/bin/phpcs --standard=phpcs.xml"
}
}