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
57
58
59
60
61
62
63
64
65
66
67
68
69
|
{
"name": "jfcherng/php-diff",
"description": "A comprehensive library for generating differences between two strings in multiple formats (unified, side by side HTML etc).",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"diff",
"udiff",
"unidiff",
"unified diff"
],
"minimum-stability": "beta",
"prefer-stable": true,
"authors": [
{
"name": "Jack Cherng",
"email": "jfcherng@gmail.com"
},
{
"name": "Chris Boulton",
"email": "chris.boulton@interspire.com"
}
],
"autoload": {
"psr-4": {
"Jfcherng\\Diff\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jfcherng\\Diff\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.1.3",
"jfcherng/php-color-output": "^2.0",
"jfcherng/php-mb-string": "^1.4.6",
"jfcherng/php-sequence-matcher": "^3.2.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19",
"liip/rmt": "^1.6",
"phan/phan": "^2.5 || ^3 || ^4",
"phpunit/phpunit": ">=7 <10",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"platform": {
"php": "7.1.3"
},
"sort-packages": true
},
"scripts": {
"analyze": [
"phan --color",
"phpcs --colors -n"
],
"fix": [
"php-cs-fixer fix --verbose"
],
"server": [
"Composer\\Config::disableProcessTimeout",
"@php -S localhost:12388 -t example/"
],
"test": [
"phpunit --verbose"
]
}
}
|