-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.json
45 lines (45 loc) · 1.16 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
{
"name": "caxy/php-htmldiff",
"type": "library",
"description": "A library for comparing two HTML files/snippets and highlighting the differences using simple HTML.",
"keywords": [
"diff",
"html"
],
"homepage": "https://github.com/caxy/php-htmldiff",
"license": "GPL-2.0",
"authors": [
{
"name": "Josh Schroeder",
"email": "[email protected]",
"homepage": "http://www.caxy.com"
}
],
"support": {
"issues": "https://github.com/caxy/php-htmldiff/issues"
},
"require": {
"php": ">=7.3",
"ezyang/htmlpurifier": "^4.7",
"ext-dom": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"doctrine/cache": "~1.0"
},
"suggest": {
"doctrine/cache": "Used for caching the calculated diffs using a Doctrine Cache Provider"
},
"autoload": {
"psr-0": { "Caxy\\HtmlDiff": "lib/" }
},
"autoload-dev": {
"psr-4": { "Caxy\\Tests\\": "tests/Caxy/Tests" }
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}