forked from horde/Text_Diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.14 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
{
"name": "yaraku/text-diff",
"description": "Text diff generation and rendering library",
"type": "library",
"homepage": "https://www.horde.org/libraries/Horde_Text_Diff",
"license": "LGPL-2.1",
"authors": [
{
"name": "Chuck Hagenbuch",
"email": "chuck@horde.org",
"role": "lead"
},
{
"name": "Jan Schneider",
"email": "jan@horde.org",
"role": "lead"
}
],
"version": "2.3.0",
"time": "2021-06-11",
"require": {
"php": "^8",
"ext-libxml": "*",
"ext-dom": "*",
"ext-iconv": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "3.4.*"
},
"replace": {
"pear-pear.horde.org/Horde_Text_Diff": "2.*",
"pear-horde/Horde_Text_Diff": "2.*",
"horde/text-diff": "2.*"
},
"provide": {
"horde/text-diff": "self.version"
},
"autoload": {
"psr-4": {
"Horde\\": "lib/Horde/"
}
}
}