Yaffs site version 1.1
[yaffs-website] / vendor / caxy / php-htmldiff / composer.json
1 {
2     "name": "caxy/php-htmldiff",
3     "type": "library",
4     "description": "A library for comparing two HTML files/snippets and highlighting the differences using simple HTML.",
5     "keywords": [
6         "diff",
7         "html"
8     ],
9     "homepage": "https://github.com/caxy/php-htmldiff",
10     "license": "GPL-2.0",
11     "authors": [
12         {
13             "name": "Josh Schroeder",
14             "email": "jschroeder@caxy.com",
15             "homepage": "http://www.caxy.com"
16         }
17     ],
18     "support": {
19         "issues": "https://github.com/caxy/php-htmldiff/issues"
20     },
21     "require": {
22         "php": ">=5.3.3",
23         "ezyang/htmlpurifier": "^4.7",
24         "sunra/php-simple-html-dom-parser": "^1.5"
25     },
26     "require-dev": {
27         "phpunit/phpunit": "~5.0",
28         "doctrine/cache": "~1.0"
29     },
30     "suggest": {
31         "doctrine/cache": "Used for caching the calculated diffs using a Doctrine Cache Provider"
32     },
33     "autoload": {
34         "psr-0": { "Caxy\\HtmlDiff": "lib/" }
35     },
36     "autoload-dev": {
37         "psr-4": { "Caxy\\Tests\\": "tests/Caxy/Tests" }
38     },
39     "extra": {
40         "branch-alias": {
41             "dev-master": "0.1.x-dev"
42         }
43     }
44 }